Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Trying to under stand the format of PUT's and GET's #58

Open
juggledad opened this issue Sep 26, 2023 · 17 comments
Open

Trying to under stand the format of PUT's and GET's #58

juggledad opened this issue Sep 26, 2023 · 17 comments

Comments

@juggledad
Copy link

So I have TickTock running and I the ping/pong works and the example curl statements to put and get readings work fine but I can seem to get others to work.

Let's say I want to collect temperature, humidity and pressure readings from more than one location (say 'location1' and 'location2').

1)How would I code a put (or multiple put's) for the three values and for the two locations.
2) how would I code a GET to get the data from one of the locations?

Once I can do that I should be able to work more things out myself.
p.s. I have been looking at the documentation at opentsdb.net/docs but so far it hasn't helped.

Thanks!

@ylin30
Copy link
Collaborator

ylin30 commented Sep 26, 2023

Let's say I want to collect temperature, humidity and pressure readings from more than one location (say 'location1' and 'location2').

You need to design your time series first. In Opentsdb format, a time series should have a metric name, one or more tag-value pairs. There are a series of data points in a time series. Each data point defines what value the time series is at a specific timestamp.

In you case, you should have 3 metrics (temperature, humidity, and pressure) and all of them have one tag, location.

1)How would I code a put (or multiple put's) for the three values and for the two locations.

Assume there are two locations, 'garden' and 'living_room'. At 11am 9/26/2023 PDT (i.e., Unix epoch time 1695751200), the temperatures are 80 and 70 degree in the garden and living_room respectively.

If you use curl, run these two commands: (Note you need to use your TT host and port in the following, e.g., 192.168.0.2:6182)

curl -v -XPOST 'http://<TT host>:<TT port>/api/put' -d 'put temperature 1695751200 70 location=living_room'
curl -v -XPOST 'http://<TT host>:<TT port>/api/put' -d 'put temperature 1695751200 80 location=garden'

Humidity and pressure are similar.

If you want to send writes in other languages, e.g., python, you can look at a wiki here

  1. how would I code a GET to get the data from one of the locations?

Let's say you want to query the temperature in the garden 11am 9/26/2023 PDT, do this:

curl -v 'http://localhost:6182/api/query?start=1695751200&m=avg:temperature\{location=garden\}'

There are lots of examples in this wiki. Hope they will help.

@juggledad
Copy link
Author

According to teh documentation a put ie in this form:
put =
so I use
/usr/bin/curl -s -XPOST 'http://192.168.1.197:6182/api/put' -d 'put temperature 1696695267 78.62 location=office'
and
/usr/bin/curl -s -XPOST 'http://192.168.1.197:6182/api/put' -d 'put temperature 1696695375 68.9 location=foxboro'

but when I retrieve the data like this:
curl -s 'http://192.168.1.197:6182/api/query?start=1600000000&m=avg:10m-avg:temperature&\{location=office\}'
The results are tee same.

results:
pmw@ticktockpi:/ticktock $ curl -s 'http://192.168.1.197:6182/api/query?start=1600000000&m=avg:10m-avg:temperature&\{location=foxboro\}'
[{"metric":"temperature","tags":{},"aggregateTags":["location"],"dps":{"1696690200":78.0440000000000111,"1696690800":78.1226315789473915,"1696691400":72.9816216216216276,"1696692000":78.089473684210617,"1696692600":77.8999999999999631,"1696693200":73.1986842105263236,"1696693800":78.4643243243243376,"1696694400":78.5205263157895246,"1696695000":78.4399999999999977}}]pmw@ticktockpi:
/ticktock $
pmw@ticktockpi:/ticktock $
pmw@ticktockpi:
/ticktock $ curl -s 'http://192.168.1.197:6182/api/query?start=1600000000&m=avg:10m-avg:temperature&\{location=office\}'
[{"metric":"temperature","tags":{},"aggregateTags":["location"],"dps":{"1696690200":78.0440000000000111,"1696690800":78.1226315789473915,"1696691400":72.9816216216216276,"1696692000":78.089473684210617,"1696692600":77.8999999999999631,"1696693200":73.1986842105263236,"1696693800":78.4643243243243376,"1696694400":78.5205263157895246,"1696695000":78.4399999999999977}}]pmw@ticktockpi:~/ticktock $

Why am I doing wrong?

@ylin30
Copy link
Collaborator

ylin30 commented Oct 8, 2023

Looks there are some other data points than the two you just added in the time range [1696695000, 1696695000+10minutes). Can you run the query without 10m-avg (i.e., m=avg:temperature instead of m=avg:10m-avg:temperature) to see what you get?

@juggledad
Copy link
Author

juggledad commented Oct 8, 2023

Just to let you know I have a sensor send in temperature and pressure every 30 seconds and I grab weather data from openweatermap every 30 minutes (temperature, Humidity and pressure)

Here it is:
pmw@ticktockpi:~ $ curl -v 'http://192.168.1.197:6182/api/query?start=1600000000&m=avg:temperature&\{location=office\}'

  • Trying 192.168.1.197:6182...
  • Connected to 192.168.1.197 (192.168.1.197) port 6182 (#0)

GET /api/query?start=1600000000&m=avg:temperature&{location=office} HTTP/1.1
Host: 192.168.1.197:6182
User-Agent: curl/7.74.0
Accept: /

  • Mark bundle as not supporting multiuse
    < HTTP/1.1 200 OK
    < Content-Type: application/json
    < Content-Length: 159352
    <
    [{"metric":"temperature","tags":{},"aggregateTags":["location"],"dps":{"1696690640":77.9000000000000057,"1696690656":78.0800000000000125,"1696690672":78.0800000000000125,"1696690688":78.0800000000000125,"1696690704":78.0800000000000125,"1696690720":77.9000000000000057,"1696690736":78.0800000000000125,"1696690752":78.0800000000000125,"1696690768":78.0800000000000125,"1696690784":78.0800000000000125,"1696690800":78.0800000000000125,"1696690816":78.0800000000000125,"1696690832":77.9000000000000057,"1696690848":77.9000000000000057,"1696690864":78.0800000000000125,"1696690880":78.0800000000000125,"1696690896":78.2600000000000193,"1696690912":78.2600000000000193,"1696690928":78.2600000000000193,"1696690944":78.2600000000000193,"1696690960":78.0800000000000125,"1696690976":78.0800000000000125,"1696690992":78.0800000000000125,"1696691008":77.9000000000000057,"1696691024":77.9000000000000057,"1696691040":78.0800000000000125,"1696691056":78.0800000000000125,"1696691072":78.0800000000000125,"1696691088":78.0800000000000125,"1696691104":78.0800000000000125,"1696691120":78.0800000000000125,"1696691136":78.0800000000000125,"1696691152":78.0800000000000125,"1696691168":78.0800000000000125,"1696691184":78.0800000000000125,"1696691200":78.0800000000000125,"1696691216":78.0800000000000125,"1696691232":77.9000000000000057,"1696691248":78.0800000000000125,"1696691264":78.0800000000000125,"1696691280":78.2600000000000193,"1696691296":78.2600000000000193,"1696691312":78.2600000000000193,"1696691328":78.2600000000000193,"1696691344":78.2600000000000193,"1696691360":78.2600000000000193,"1696691376":78.4400000000000261,"1696691392":78.4400000000000261,"1696691408":78.4400000000000261,"1696691424":78.4400000000000261,"1696691440":78.4400000000000261,"1696691456":78.4400000000000261,"1696691472":78.4400000000000261,"1696691488":78.4400000000000261,"1696691504":78.4400000000000261,"1696691520":78.4400000000000261,"1696691536":78.4400000000000261,"1696691552":78.620000000000033,"1696691568":78.620000000000033,"1696691584":78.2600000000000335,"1696691600":78.2600000000000335,"1696691616":78.2600000000000335,"1696691633":78.2600000000000335,"1696691648":77.9000000000000341,"1696691664":77.9000000000000341,"1696691680":77.9000000000000341,"1696691696":77.9000000000000341,"1696691712":77.9000000000000341,"1696691728":77.9000000000000341,"1696691744":77.9000000000000341,"1696691760":77.7200000000000273,"1696691776":77.7200000000000273,"1696691792":77.9000000000000341,"1696691808":77.9000000000000341,"1696691825":77.9000000000000341,"1696691840":77.9000000000000341,"1696691856":78.0800000000000409,"1696691872":78.0800000000000409,"1696691875":67.8199999999999932,"1696691888":78.0800000000000409,"1696691904":78.0800000000000409,"1696691921":78.0800000000000409,"1696691936":78.0800000000000409,"1696691952":78.0800000000000409,"1696691969":78.0800000000000409,"1696691985":78.0800000000000409,"1696692001":78.2600000000000477,"1696692017":78.2600000000000477,"1696692033":78.0800000000000409,"1696692048":78.0800000000000409,"1696692064":78.0800000000000409,"1696692081":78.0800000000000409,"1696692097":77.9000000000000341,"1696692113":77.9000000000000341,"1696692129":78.0799999999999983,"1696692145":78.0799999999999983,"1696692161":78.2600000000000051,"1696692177":78.2600000000000051,"1696692193":78.0799999999999983,"1696692209":78.0799999999999983,"1696692225":77.8999999999999915,"1696692241":77.8999999999999915,"1696692257":77.8999999999999915,"1696692273":78.2599999999999909,"1696692289":78.2599999999999909,"1696692305":78.2599999999999909,"1696692321":78.2599999999999909,"1696692337":77.8999999999999915,"1696692353":77.8999999999999915,"1696692369":77.8999999999999915,"1696692385":77.8999999999999915,"1696692401":77.8999999999999915,"1696692417":77.8999999999999915,"1696692433":77.8999999999999915,"1696692449":77.8999999999999915,"1696692465":77.8999999999999915,"1696692481":78.2599999999999909,"1696692497":78.2599999999999909,"1696692513":78.2599999999999909,"1696692529":78.2599999999999909,"1696692545":78.2599999999999909,"1696692561":78.2599999999999909,"1696692577":78.2599999999999909,"1696692593":78.2599999999999909,"1696692609":78.2599999999999909,"1696692625":78.2599999999999909,"1696692641":78.2599999999999909,"1696692657":78.2599999999999909,"1696692673":77.8999999999999915,"1696692689":77.8999999999999915,"1696692705":77.8999999999999915,"1696692721":77.8999999999999915,"1696692737":78.0799999999999983,"1696692753":77.8999999999999915,"1696692769":77.8999999999999915,"1696692785":77.8999999999999915,"1696692801":77.8999999999999915,"1696692817":78.0799999999999983,"1696692833":78.0799999999999983,"1696692849":78.0799999999999983,"1696692865":78.0799999999999983,"1696692881":77.8999999999999915,"1696692897":77.8999999999999915,"1696692913":77.8999999999999915,"1696692929":77.8999999999999915,"1696692945":77.8999999999999915,"1696692961":77.8999999999999915,"1696692977":77.8999999999999915,"1696692993":77.539999999999992,"1696693009":77.539999999999992,"1696693025":77.7199999999999989,"1696693041":77.7199999999999989,"1696693057":77.9000000000000057,"1696693073":77.9000000000000057,"1696693089":77.7199999999999989,"1696693105":77.7199999999999989,"1696693122":77.7199999999999989,"1696693137":77.7199999999999989,"1696693153":77.7199999999999989,"1696693169":77.7199999999999989,"1696693185":77.7199999999999989,"1696693201":77.7199999999999989,"1696693217":77.539999999999992,"1696693233":77.3599999999999852,"1696693249":77.3599999999999852,"1696693266":77.539999999999992,"1696693282":77.539999999999992,"1696693298":77.539999999999992,"1696693313":77.539999999999992,"1696693330":77.8999999999999915,"1696693346":77.8999999999999915,"1696693361":77.7199999999999847,"1696693377":77.7199999999999847,"1696693394":77.7199999999999847,"1696693410":77.7199999999999847,"1696693426":77.8999999999999915,"1696693442":77.8999999999999915,"1696693458":78.0799999999999983,"1696693473":78.0799999999999983,"1696693490":78.0799999999999983,"1696693506":78.0799999999999983,"1696693521":78.0799999999999983,"1696693538":77.9000000000000057,"1696693554":77.9000000000000057,"1696693570":77.9000000000000057,"1696693586":77.9000000000000057,"1696693602":77.7199999999999989,"1696693618":77.7199999999999989,"1696693634":77.9000000000000057,"1696693650":77.9000000000000057,"1696693666":77.9000000000000057,"1696693674":68.539999999999992,"1696693682":77.9000000000000057,"1696693698":78.0800000000000125,"1696693714":78.0800000000000125,"1696693730":78.0800000000000125,"1696693746":78.0800000000000125,"1696693762":78.0800000000000125,"1696693778":78.2600000000000193,"1696693794":78.2600000000000193,"1696693810":78.2600000000000193,"1696693826":78.2600000000000193,"1696693842":78.2600000000000193,"1696693858":78.2600000000000193,"1696693874":78.2600000000000193,"1696693890":78.2600000000000193,"1696693906":78.2600000000000193,"1696693922":78.2600000000000193,"1696693938":78.4400000000000261,"1696693954":78.4400000000000261,"1696693970":78.2600000000000193,"1696693986":78.6200000000000188,"1696694002":78.6200000000000188,"1696694018":78.4400000000000119,"1696694034":78.4400000000000119,"1696694050":78.4400000000000119,"1696694066":78.4400000000000119,"1696694082":78.4400000000000119,"1696694098":78.4400000000000119,"1696694114":78.4400000000000119,"1696694130":78.4400000000000119,"1696694146":78.4400000000000119,"1696694162":78.4400000000000119,"1696694178":78.6200000000000188,"1696694194":78.6200000000000188,"1696694210":78.6200000000000188,"1696694226":78.6200000000000188,"1696694242":78.8000000000000256,"1696694258":78.6200000000000188,"1696694274":78.6200000000000188,"1696694290":78.6200000000000188,"1696694306":78.6200000000000188,"1696694322":78.4400000000000119,"1696694338":78.4400000000000119,"1696694354":78.6200000000000188,"1696694370":78.6200000000000188,"1696694386":78.4400000000000119,"1696694402":78.4400000000000119,"1696694418":78.6200000000000188,"1696694434":78.6200000000000188,"1696694450":78.4400000000000119,"1696694466":78.4400000000000119,"1696694482":78.4400000000000119,"1696694499":78.4400000000000119,"1696694514":78.4400000000000119,"1696694530":78.4400000000000119,"1696694546":78.4400000000000119,"1696694563":78.6200000000000188,"1696694578":78.6200000000000188,"1696694594":78.6200000000000188,"1696694610":78.6200000000000188,"1696694626":78.6200000000000188,"1696694642":78.6200000000000188,"1696694658":78.6200000000000188,"1696694674":78.6200000000000188,"1696694690":78.8000000000000256,"1696694706":78.8000000000000256,"1696694722":78.6200000000000188,"1696694739":78.6200000000000188,"1696694755":78.6200000000000188,"1696694771":78.4400000000000119,"1696694786":78.4400000000000119,"1696694802":78.6200000000000188,"1696694818":78.6200000000000188,"1696694834":78.6200000000000188,"1696694851":78.6200000000000188,"1696694866":78.4400000000000119,"1696694883":78.4400000000000119,"1696694899":78.2600000000000051,"1696694915":78.2600000000000051,"1696694931":78.2600000000000051,"1696694947":78.2600000000000051,"1696694963":78.4400000000000119,"1696694979":78.4400000000000119,"1696694995":78.4399999999999977,"1696695011":78.4399999999999977,"1696695026":78.4399999999999977,"1696695043":78.4399999999999977,"1696695059":78.4399999999999977,"1696695075":78.6200000000000045,"1696695091":78.6200000000000045,"1696695107":78.6200000000000045,"1696695123":78.6200000000000045,"1696695139":78.6200000000000045,"1696695155":78.6200000000000045,"1696695171":78.4399999999999977,"1696695187":78.4399999999999977,"1696695203":78.6200000000000045,"1696695219":78.6200000000000045,"1696695235":78.6200000000000045,"1696695251":78.6200000000000045,"1696695267":78.6200000000000045,"1696695283":78.6200000000000045,"1696695299":78.6200000000000045,"1696695315":78.4399999999999977,"1696695331":78.4399999999999977,"1696695347":78.4399999999999977,"1696695363":78.4399999999999977,"1696695375":68.8999999999999915,"1696695379":78.4399999999999977,"1696695395":78.4399999999999977,"1696695411":78.4399999999999977,"1696695427":78.4399999999999977,"1696695443":78.4399999999999977,"1696695459":78.4399999999999977,"1696695474":68.8999999999999915,"1696695475":78.6200000000000045,"1696695491":78.6200000000000045,"1696695507":78.6200000000000045,"1696695523":78.6200000000000045,"1696695539":78.6200000000000045,"1696695555":78.6200000000000045,"1696695571":78.6200000000000045,"1696695587":78.6200000000000045,"1696695603":78.6200000000000045,"1696695619":78.6200000000000045,"1696695635":78.6200000000000045,"1696695651":78.6200000000000045,"1696695667":78.6200000000000045,"1696695683":78.6200000000000045,"1696695699":78.6200000000000045,"1696695715":78.4399999999999977,"1696695731":78.4399999999999977,"1696695747":78.6200000000000045,"1696695763":78.6200000000000045,"1696695779":78.6200000000000045,"1696695795":78.8000000000000114,"1696695811":78.8000000000000114,"1696695827":78.6200000000000045,"1696695843":78.6200000000000045,"1696695859":78.8000000000000114,"1696695875":78.8000000000000114,"1696695892":78.8000000000000114,"1696695907":78.8000000000000114,"1696695923":78.8000000000000114,"1696695939":78.8000000000000114,"1696695955":78.6200000000000045,"1696695971":78.6200000000000045,"1696695987":78.8000000000000114,"1696696003":78.6200000000000045,"1696696019":78.6200000000000045,"1696696035":78.8000000000000114,"1696696051":78.8000000000000114,"1696696067":78.9800000000000182,"1696696083":78.9800000000000182,"1696696099":78.9800000000000182,"1696696116":78.9800000000000182,"1696696131":78.9800000000000182,"1696696148":78.9800000000000182,"1696696163":78.9800000000000182,"1696696180":78.9800000000000182,"1696696195":78.8000000000000114,"1696696211":78.8000000000000114,"1696696227":78.8000000000000114,"1696696243":78.6200000000000045,"1696696259":78.6200000000000045,"1696696275":78.6200000000000045,"1696696291":78.6200000000000045,"1696696308":78.8000000000000114,"1696696323":78.8000000000000114,"1696696340":78.6200000000000045,"1696696356":78.6200000000000045,"1696696372":78.6200000000000045,"1696696387":78.6200000000000045,"1696696404":78.4399999999999977,"1696696420":78.4399999999999977,"1696696436":78.4399999999999977,"1696696452":78.4399999999999977,"1696696468":78.2599999999999909,"1696696484":78.2599999999999909,"1696696500":78.0799999999999841,"1696696516":77.8999999999999773,"1696696532":77.8999999999999773,"1696696548":78.0799999999999841,"1696696564":78.0799999999999841,"1696696580":78.0799999999999841,"1696696596":78.0799999999999841,"1696696612":78.0799999999999841,"1696696628":78.0799999999999841,"1696696644":77.8999999999999773,"1696696660":77.8999999999999773,"1696696676":78.0799999999999841,"1696696692":78.0799999999999841,"1696696708":77.8999999999999773,"1696696724":77.8999999999999773,"1696696740":77.8999999999999773,"1696696756":77.8999999999999773,"1696696772":77.8999999999999773,"1696696788":78.0799999999999841,"1696696804":78.0799999999999841,"1696696820":78.0799999999999841,"1696696836":78.0799999999999841,"1696696852":78.0799999999999841,"1696696868":78.0799999999999841,"1696696884":77.8999999999999773,"1696696900":77.8999999999999773,"1696696916":78.0799999999999841,"1696696932":78.0799999999999841,"1696696948":78.0799999999999841,"1696696964":78.0799999999999841,"1696696980":78.0799999999999841,"1696696996":77.8999999999999773,"1696697012":77.8999999999999773,"1696697028":77.8999999999999773,"1696697044":77.8999999999999773,"1696697060":77.8999999999999773,"1696697076":77.8999999999999773,"1696697092":78.0799999999999841,"1696697108":78.0799999999999841,"1696697124":77.8999999999999773,"1696697140":77.8999999999999773,"1696697156":77.8999999999999773,"1696697172":77.8999999999999773,"1696697188":77.8999999999999773,"1696697204":77.8999999999999773,"1696697220":77.8999999999999773,"1696697236":77.8999999999999773,"1696697252":77.8999999999999773,"1696697268":78.0799999999999841,"1696697274":68.539999999999992,"1696697284":78.0799999999999841,"1696697300":77.8999999999999773,"1696697316":77.8999999999999773,"1696697332":77.7199999999999704,"1696697348":77.7199999999999704,"1696697364":77.8999999999999773,"1696697381":77.8999999999999773,"1696697396":77.8999999999999773,"1696697412":77.8999999999999773,"1696697428":77.7199999999999704,"1696697444":77.7199999999999704,"1696697460":77.7199999999999704,"1696697476":77.7199999999999704,"1696697493":77.7199999999999704,"1696697508":77.8999999999999773,"1696697524":77.8999999999999773,"1696697541":77.7199999999999704,"1696697556":77.7199999999999704,"1696697573":77.7199999999999704,"1696697588":77.7199999999999704,"1696697604":77.7199999999999704,"1696697621":77.7199999999999704,"1696697637":77.8999999999999773,"1696697652":77.8999999999999773,"1696697668":77.5399999999999778,"1696697685":77.5399999999999778,"1696697701":77.5399999999999778,"1696697716":77.5399999999999778,"1696697733":77.7199999999999989,"1696697749":77.7199999999999989,"1696697765":77.7199999999999989,"1696697781":77.539999999999992,"1696697797":77.539999999999992,"1696697813":77.539999999999992,"1696697829":77.539999999999992,"1696697845":77.3599999999999852,"1696697861":77.3599999999999852,"1696697877":77.3599999999999852,"1696697893":77.3599999999999852,"1696697909":77.1799999999999784,"1696697925":77.1799999999999784,"1696697941":77.3599999999999852,"1696697957":77.3599999999999852,"1696697973":77.3599999999999852,"1696697989":77.3599999999999852,"1696698005":77.539999999999992,"1696698021":77.3599999999999852,"1696698037":77.3599999999999852,"1696698053":77.3599999999999852,"1696698069":77.3599999999999852,"1696698085":77.3599999999999852,"1696698101":77.3599999999999852,"1696698117":77.1799999999999784,"1696698133":77.1799999999999784,"1696698177":77.1800000000000068,"1696698181":77.1799999999999784,"1696698197":77.1799999999999784,"1696698213":77.5399999999999778,"1696698229":77.5399999999999778,"1696698245":77.359999999999971,"1696698261":77.359999999999971,"1696698277":77.359999999999971,"1696698293":77.359999999999971,"1696698309":77.359999999999971,"1696698325":77.1799999999999642,"1696698341":77.1799999999999642,"1696698357":77.359999999999971,"1696698373":77.359999999999971,"1696698389":77.359999999999971,"1696698405":77.359999999999971,"1696698421":77.359999999999971,"1696698437":77.359999999999971,"1696698453":77.1799999999999642,"1696698469":77.1799999999999642,"1696698485":77.5399999999999636,"1696698501":77.5399999999999636,"1696698517":77.5399999999999636,"1696698533":77.3599999999999568,"1696698549":77.3599999999999568,"1696698565":77.17999999999995,"1696698581":77.17999999999995,"1696698597":77.17999999999995,"1696698613":77.17999999999995,"1696698629":77.17999999999995,"1696698645":77.17999999999995,"1696698661":77.17999999999995,"1696698677":77.17999999999995,"1696698693":77.17999999999995,"1696698709":77.17999999999995,"1696698725":77.17999999999995,"1696698741":77.17999999999995,"1696698757":77.17999999999995,"1696698773":77.17999999999995,"1696698789":77.17999999999995,"1696698805":77.17999999999995,"1696698821":77.17999999999995,"1696698837":77.3599999999999568,"1696698853":77.3599999999999568,"1696698869":77.17999999999995,"1696698886":77.17999999999995,"1696698901":77.17999999999995,"1696698918":77.17999999999995,"1696698933":77.3599999999999568,"1696698949":77.3599999999999568,"1696698965":77.3599999999999568,"1696698981":77.3599999999999568,"1696698998":77.17999999999995,"1696699014":77.17999999999995,"1696699030":77.17999999999995,"1696699046":77.17999999999995,"1696699062":77.17999999999995,"1696699074":68.3599999999999852,"1696699077":76.9999999999999432,"1696699093":76.9999999999999432,"1696699109":77.17999999999995,"1696699126":77.17999999999995,"1696699142":76.9999999999999432,"1696699158":76.9999999999999432,"1696699174":76.8199999999999363,"1696699190":76.8199999999999363,"1696699206":77.0,"1696699222":77.0,"1696699238":77.0,"1696699254":76.6400000000000006,"1696699270":76.6400000000000006,"1696699286":77.0,"1696699302":77.0,"1696699318":77.0,"1696699334":77.0,"1696699350":77.0,"1696699366":77.0,"1696699382":77.0,"1696699398":77.0,"1696699414":76.8199999999999932,"1696699430":76.8199999999999932,"1696699446":77.0,"1696699462":77.0,"1696699481":76.8199999999999932,"1696699494":76.8199999999999932,"1696699510":77.0,"1696699526":77.0,"1696699542":77.0,"1696699558":77.0,"1696699574":77.0,"1696699590":76.6400000000000006,"1696699606":76.6400000000000006,"1696699622":76.6400000000000006,"1696699638":76.6400000000000006,"1696699654":76.6400000000000006,"1696699670":76.6400000000000006,"1696699686":76.6400000000000006,"1696699702":76.6400000000000006,"1696699718":76.8200000000000074,"1696699734":76.8200000000000074,"1696699750":76.8200000000000074,"1696699766":76.6400000000000006,"1696699782":76.6400000000000006,"1696699798":76.8200000000000074,"1696699814":76.8200000000000074,"1696699830":76.8200000000000074,"1696699846":76.8200000000000074,"1696699862":76.6400000000000006,"1696699878":76.6400000000000006,"1696699894":76.6400000000000006,"1696699910":76.6400000000000006,"1696699926":76.6400000000000006,"1696699942":76.6400000000000006,"1696699958":76.6400000000000006,"1696699974":76.6400000000000006,"1696699990":76.6400000000000006,"1696700006":76.6400000000000006,"1696700022":76.6400000000000006,"1696700038":76.8200000000000074,"1696700054":76.8200000000000074,"1696700070":76.6400000000000006,"1696700087":76.6400000000000006,"1696700102":76.6400000000000006,"1696700118":76.6400000000000006,"1696700134":76.8200000000000074,"1696700150":76.8200000000000074,"1696700166":76.6400000000000006,"1696700182":76.6400000000000006,"1696700198":76.8200000000000074,"1696700214":76.8200000000000074,"1696700230":76.8200000000000074,"1696700247":76.8200000000000074,"1696700263":76.8200000000000074,"1696700279":76.8200000000000074,"1696700294":76.8200000000000074,"1696700311":76.8200000000000074,"1696700326":76.8200000000000074,"1696700342":76.6400000000000006,"1696700358":76.6400000000000006,"1696700375":76.8200000000000074,"1696700390":76.8200000000000074,"1696700406":76.8200000000000074,"1696700422":76.8200000000000074,"1696700439":76.8200000000000074,"1696700454":76.8200000000000074,"1696700470":76.8200000000000074,"1696700487":76.8200000000000074,"1696700503":76.8200000000000074,"1696700518":77.0000000000000142,"1696700535":77.0000000000000142,"1696700551":77.0,"1696700567":77.0,"1696700583":76.8199999999999932,"1696700599":76.8199999999999932,"1696700615":76.6399999999999864,"1696700631":76.6399999999999864,"1696700647":76.8199999999999932,"1696700663":76.8199999999999932,"1696700679":76.8199999999999932,"1696700695":76.8199999999999932,"1696700711":76.6399999999999864,"1696700727":76.6399999999999864,"1696700743":76.8199999999999932,"1696700759":76.8199999999999932,"1696700775":76.8199999999999932,"1696700791":76.8199999999999932,"1696700807":76.8199999999999932,"1696700823":76.8199999999999932,"1696700839":76.8199999999999932,"1696700855":76.6399999999999864,"1696700871":76.6399999999999864,"1696700874":67.6399999999999864,"1696700887":76.6399999999999864,"1696700903":76.6399999999999864,"1696700919":76.6399999999999864,"1696700935":76.6399999999999864,"1696700951":76.6399999999999864,"1696700967":76.6399999999999864,"1696700983":76.6399999999999864,"1696700999":76.6399999999999864,"1696701015":76.6399999999999864,"1696701031":76.4599999999999795,"1696701047":76.4599999999999795,"1696701063":76.4599999999999795,"1696701079":76.4599999999999795,"1696701095":76.6399999999999864,"1696701111":76.6399999999999864,"1696701127":76.4599999999999795,"1696701143":76.4599999999999795,"1696701159":76.4599999999999795,"1696701175":76.4599999999999795,"1696701191":76.4599999999999795,"1696701207":76.4599999999999795,"1696701223":76.6399999999999864,"1696701239":76.6399999999999864,"1696701255":76.4599999999999795,"1696701271":76.4599999999999795,"1696701287":76.4599999999999795,"1696701303":76.4599999999999795,"1696701319":76.4599999999999795,"1696701335":76.4599999999999795,"1696701351":76.4599999999999795,"1696701367":76.4599999999999795,"1696701383":76.4599999999999795,"1696701399":76.4599999999999795,"1696701415":76.4599999999999795,"1696701431":76.4599999999999795,"1696701447":76.4599999999999795,"1696701463":76.4599999999999795,"1696701479":76.4599999999999795,"1696701495":76.4599999999999795,"1696701511":76.4599999999999795,"1696701527":76.4599999999999795,"1696701543":76.2799999999999727,"1696701559":76.2799999999999727,"1696701575":76.2799999999999727,"1696701591":76.2799999999999727,"1696701607":76.2799999999999727,"1696701623":76.2799999999999727,"1696701639":76.4599999999999795,"1696701655":76.4599999999999795,"1696701671":76.4599999999999795,"1696701687":76.4599999999999795,"1696701703":76.4599999999999795,"1696701720":76.4599999999999795,"1696701736":76.4599999999999795,"1696701807":76.4599999999999937,"1696701816":76.4599999999999795,"1696701832":76.4599999999999795,"1696701848":76.4599999999999795,"1696701863":76.4599999999999795,"1696701880":76.4599999999999795,"1696701896":76.4599999999999795,"1696701912":76.4599999999999795,"1696701928":76.4599999999999795,"1696701944":76.4599999999999795,"1696701959":76.4599999999999795,"1696701976":76.2799999999999727,"1696701992":76.2799999999999727,"1696702007":76.4599999999999795,"1696702024":76.4599999999999795,"1696702040":76.4599999999999795,"1696702056":76.4599999999999795,"1696702072":76.4599999999999795,"1696702088":76.4599999999999795,"1696702104":76.4599999999999795,"1696702120":76.4599999999999795,"1696702136":76.4599999999999795,"1696702152":76.4599999999999795,"1696702168":76.4599999999999795,"1696702184":76.4599999999999795,"1696702200":76.4599999999999795,"1696702216":76.2799999999999727,"1696702232":76.2799999999999727,"1696702248":76.4599999999999795,"1696702264":76.4599999999999795,"1696702280":76.4599999999999795,"1696702296":76.4599999999999795,"1696702312":76.4599999999999795,"1696702328":76.4599999999999795,"1696702344":76.4599999999999795,"1696702360":76.6399999999999864,"1696702376":76.6399999999999864,"1696702392":76.4599999999999795,"1696702408":76.4599999999999795,"1696702424":76.4599999999999795,"1696702440":76.4599999999999795,"1696702456":76.4599999999999795,"1696702472":76.4599999999999795,"1696702488":76.4599999999999795,"1696702504":76.4599999999999795,"1696702520":76.4599999999999795,"1696702536":76.4599999999999795,"1696702552":76.4599999999999795,"1696702568":76.2800000000000011,"1696702584":76.2800000000000011,"1696702600":76.2800000000000011,"1696702616":76.2800000000000011,"1696702632":76.460000000000008,"1696702648":76.460000000000008,"1696702664":76.2800000000000011,"1696702674":67.0999999999999801,"1696702680":76.2800000000000011,"1696702696":76.2800000000000011,"1696702712":76.2800000000000011,"1696702728":76.460000000000008,"1696702744":76.460000000000008,"1696702760":76.2800000000000011,"1696702776":76.2800000000000011,"1696702792":76.2800000000000011,"1696702808":76.0999999999999943,"1696702824":76.0999999999999943,"1696702840":75.9199999999999875,"1696702856":75.9199999999999875,"1696702872":76.0999999999999943,"1696702888":76.0999999999999943,"1696702904":76.0999999999999943,"1696702920":76.0999999999999943,"1696702936":76.0999999999999943,"1696702953":76.0999999999999943,"1696702968":76.2800000000000011,"1696702984":76.2800000000000011,"1696703000":76.0999999999999943,"1696703016":76.0999999999999943,"1696703032":76.0999999999999943,"1696703048":76.0999999999999943,"1696703064":76.0999999999999943,"1696703080":75.9199999999999875,"1696703096":75.9199999999999875,"1696703112":75.9199999999999875,"1696703129":75.9199999999999875,"1696703144":75.9199999999999875,"1696703160":75.9199999999999875,"1696703177":75.9199999999999875,"1696703192":75.9199999999999875,"1696703208":75.9199999999999875,"1696703225":75.9199999999999875,"1696703240":75.9199999999999875,"1696703256":75.9199999999999875,"1696703273":75.9199999999999875,"1696703289":75.9199999999999875,"1696703305":75.9199999999999875,"1696703321":76.0999999999999943,"1696703336":76.0999999999999943,"1696703352":76.0999999999999943,"1696703369":76.0999999999999943,"1696703385":76.0999999999999943,"1696703401":76.0999999999999943,"1696703417":76.0999999999999943,"1696703433":76.0999999999999943,"1696703449":76.0999999999999943,"1696703465":76.0999999999999943,"1696703481":76.0999999999999943,"1696703497":76.0999999999999943,"1696703513":76.0999999999999943,"1696703529":76.0999999999999943,"1696703545":76.0999999999999943,"1696703561":76.0999999999999943,"1696703577":76.0999999999999943,"1696703593":76.0999999999999943,"1696703609":76.0999999999999943,"1696703625":76.0999999999999943,"1696703641":76.0999999999999943,"1696703657":76.0999999999999943,"1696703673":76.0999999999999943,"1696703689":76.0999999999999943,"1696703705":76.0999999999999943,"1696703721":76.0999999999999943,"1696703737":76.0999999999999943,"1696703753":75.9199999999999875,"1696703769":75.9199999999999875,"1696703785":75.9199999999999875,"1696703801":76.0999999999999943,"1696703817":76.0999999999999943,"1696703833":75.9199999999999875,"1696703849":75.9199999999999875,"1696703865":75.7399999999999807,"1696703881":75.7399999999999807,"1696703897":75.9199999999999875,"1696703913":75.9199999999999875,"1696703929":76.0999999999999943,"1696703945":76.0999999999999943,"1696703961":76.0999999999999943,"1696703977":76.0999999999999943,"1696703993":76.0999999999999943,"1696704009":76.0999999999999943,"1696704025":76.2800000000000011,"1696704041":76.4599999999999937,"1696704057":76.4599999999999937,"1696704073":76.2799999999999869,"1696704089":76.2799999999999869,"1696704105":76.2799999999999869,"1696704121":76.2799999999999869,"1696704137":76.2799999999999869,"1696704153":76.2799999999999869,"1696704169":76.0999999999999801,"1696704185":76.0999999999999801,"1696704201":76.2799999999999869,"1696704217":76.2799999999999869,"1696704233":76.2799999999999869,"1696704249":76.2799999999999869,"1696704265":76.0999999999999801,"1696704281":76.0999999999999801,"1696704297":76.0999999999999801,"1696704313":76.0999999999999801,"1696704329":76.0999999999999801,"1696704345":76.0999999999999801,"1696704361":76.0999999999999801,"1696704377":76.0999999999999801,"1696704393":76.0999999999999801,"1696704409":76.0999999999999801,"1696704426":76.0999999999999801,"1696704441":76.0999999999999801,"1696704457":76.0999999999999801,"1696704474":71.3299999999999841,"1696704489":76.2799999999999869,"1696704505":76.2799999999999869,"1696704521":76.0999999999999801,"1696704537":76.0999999999999801,"1696704553":76.0999999999999801,"1696704569":76.0999999999999801,"1696704585":76.0999999999999801,"1696704601":76.0999999999999801,"1696704618":75.9199999999999733,"1696704634":75.9199999999999733,"1696704650":75.9199999999999733,"1696704665":75.9199999999999733,"1696704681":75.9199999999999733,"1696704698":75.9199999999999733,"1696704714":75.9199999999999733,"1696704730":75.9199999999999733,"1696704745":75.9199999999999733,"1696704762":75.9199999999999733,"1696704777":75.7399999999999665,"1696704794":75.7399999999999665,"1696704810":75.7399999999999665,"1696704825":75.9199999999999733,"1696704841":75.9199999999999733,"1696704858":75.9199999999999733,"1696704874":75.9199999999999733,"1696704890":75.9199999999999733,"1696704906":75.9199999999999733,"1696704922":75.9199999999999733,"1696704938":75.9199999999999733,"1696704954":75.9199999999999733,"1696704970":75.9199999999999733,"1696704986":76.0999999999999801,"1696705002":76.0999999999999801,"1696705018":76.0999999999999801,"1696705034":76.0999999999999801,"1696705050":76.0999999999999801,"1696705066":76.2799999999999869,"1696705082":76.2799999999999869,"1696705098":76.0999999999999801,"1696705114":76.0999999999999801,"1696705130":76.0999999999999801,"1696705146":76.0999999999999801,"1696705162":76.0999999999999801,"1696705178":76.0999999999999801,"1696705194":76.0999999999999801,"1696705210":76.0999999999999801,"1696705226":76.0999999999999801,"1696705242":76.0999999999999801,"1696705258":76.0999999999999801,"1696705274":76.2799999999999869,"1696705290":76.2799999999999869,"1696705306":76.0999999999999801,"1696705322":76.0999999999999801,"1696705338":76.2799999999999869,"1696705368":76.2799999999999869,"1696705370":76.2799999999999869,"1696705386":76.2799999999999869,"1696705402":76.2799999999999869,"1696705418":76.2799999999999869,"1696705434":76.2799999999999869,"1696705450":76.2799999999999869,"1696705466":76.2800000000000011,"1696705482":76.2800000000000011,"1696705498":76.0999999999999943,"1696705514":76.0999999999999943,"1696705530":76.0999999999999943,"1696705546":76.0999999999999943,"1696705562":76.0999999999999943,"1696705578":76.2800000000000011,"1696705594":76.2800000000000011,"1696705610":76.0999999999999943,"1696705626":76.0999999999999943,"1696705642":76.0999999999999943,"1696705658":76.0999999999999943,"1696705674":76.0999999999999943,"1696705690":76.0999999999999943,"1696705706":75.9199999999999875,"1696705722":75.9199999999999875,"1696705738":76.0999999999999943,"1696705754":76.0999999999999943,"1696705770":76.0999999999999943,"1696705786":75.9199999999999875,"1696705802":75.9199999999999875,"1696705818":75.7399999999999807,"1696705834":75.7399999999999807,"1696705850":75.9199999999999875,"1696705866":75.9199999999999875,"1696705883":75.9199999999999875,"1696705899":75.9199999999999875,"1696705914":76.0999999999999943,"1696705930":76.0999999999999943,"1696705947":76.0999999999999943,"1696705963":76.0999999999999943,"1696705979":76.0999999999999943,"1696705994":76.0999999999999943,"1696706011":75.9199999999999875,"1696706026":75.9199999999999875,"1696706042":75.9199999999999875,"1696706058":76.0999999999999943,"1696706074":76.0999999999999943,"1696706091":75.9199999999999875,"1696706106":75.9199999999999875,"1696706123":75.7399999999999807,"1696706139":75.7399999999999807,"1696706155":75.9199999999999875,"1696706171":75.9199999999999875,"1696706186":75.7399999999999807,"1696706203":75.7399999999999807,"1696706219":75.9199999999999875,"1696706235":75.9199999999999875,"1696706251":75.9199999999999875,"1696706267":75.9199999999999875,"1696706274":66.0199999999999818,"1696706283":75.9199999999999875,"1696706299":75.9199999999999875,"1696706315":75.9199999999999875,"1696706331":75.7399999999999807,"1696706347":75.7399999999999807,"1696706363":75.9199999999999875,"1696706379":75.9199999999999875,"1696706395":75.7399999999999807,"1696706411":75.7399999999999807,"1696706427":75.7399999999999807,"1696706443":75.7399999999999807,"1696706459":75.9199999999999875,"1696706475":75.9199999999999875,"1696706491":75.9199999999999875,"1696706507":75.9199999999999875,"1696706523":75.7399999999999807,"1696706539":75.7399999999999807,"1696706555":75.7399999999999807,"1696706571":75.9199999999999875,"1696706587":75.9199999999999875,"1696706603":75.9199999999999875,"1696706619":75.9199999999999875,"1696706635":75.9199999999999875,"1696706651":75.9199999999999875,"1696706667":75.7400000000000091,"1696706683":75.7400000000000091,"1696706699":75.7400000000000091,"1696706715":75.7400000000000091,"1696706731":75.9200000000000159,"1696706747":75.9200000000000159,"1696706763":75.9200000000000159,"1696706779":75.9200000000000159,"1696706795":75.9200000000000159,"1696706811":75.9200000000000159,"1696706827":75.9200000000000159,"1696706843":75.9200000000000159,"1696706859":75.9200000000000159,"1696706875":75.7400000000000091,"1696706891":75.7400000000000091,"1696706907":75.7400000000000091,"1696706923":75.7400000000000091,"1696706939":75.7400000000000091,"1696706955":75.7400000000000091,"1696706971":75.7400000000000091,"1696706987":75.7400000000000091,"1696707003":75.7400000000000091,"1696707019":75.7400000000000091,"1696707036":75.7400000000000091,"1696707051":75.7400000000000091,"1696707067":75.7400000000000091,"1696707083":75.7400000000000091,"1696707099":75.7400000000000091,"1696707115":75.5600000000000023,"1696707131":75.5600000000000023,"1696707148":75.7400000000000091,"1696707163":75.7400000000000091,"1696707179":75.5600000000000023,"1696707195":75.5600000000000023,"1696707211":75.7400000000000091,"1696707227":75.7400000000000091,"1696707243":75.7400000000000091,"1696707259":75.7400000000000091,"1696707275":75.7400000000000091,"1696707291":75.7400000000000091,"1696707307":75.7400000000000091,"1696707324":75.7400000000000091,"1696707339":75.7400000000000091,"1696707356":75.5600000000000023,"1696707371":75.5600000000000023,"1696707387":75.7400000000000091,"1696707403":75.7400000000000091,"1696707419":75.7400000000000091,"1696707436":75.7400000000000091,"1696707451":75.5600000000000023,"1696707467":75.5600000000000023,"1696707484":75.7400000000000091,"1696707500":75.7400000000000091,"1696707515":75.7400000000000091,"1696707532":75.7400000000000091,"1696707548":75.7400000000000091,"1696707564":75.7400000000000091,"1696707580":75.7400000000000091,"1696707596":75.7400000000000091,"1696707612":75.7400000000000091,"1696707628":75.7400000000000091,"1696707644":75.7400000000000091,"1696707660":75.7400000000000091,"1696707676":75.7400000000000091,"1696707692":75.7400000000000091,"1696707708":75.7400000000000091,"1696707724":75.9200000000000159,"1696707740":75.9200000000000159,"1696707756":75.9200000000000159,"1696707772":75.9200000000000159,"1696707788":75.7400000000000091,"1696707804":75.7400000000000091,"1696707820":75.7400000000000091,"1696707836":75.7400000000000091,"1696707852":75.7400000000000091,"1696707868":75.7400000000000091,"1696707884":75.7400000000000091,"1696707900":75.7400000000000091,"1696707916":75.7400000000000091,"1696707932":75.7400000000000091,"1696707948":75.7400000000000091,"1696707964":75.9200000000000159,"1696707980":75.9200000000000159,"1696707996":75.7400000000000091,"1696708012":75.7400000000000091,"1696708028":75.7400000000000091,"1696708044":75.7400000000000091,"1696708060":75.7400000000000091,"1696708075":65.4799999999999756,"1696708076":75.7400000000000091,"1696708092":75.7400000000000091,"1696708108":75.7400000000000091,"1696708124":75.7400000000000091,"1696708140":75.5600000000000023,"1696708156":75.5600000000000023,"1696708172":75.5600000000000023,"1696708188":75.5600000000000023,"1696708204":75.5600000000000023,"1696708220":75.5600000000000023,"1696708236":75.5600000000000023,"1696708252":75.5600000000000023,"1696708268":75.5600000000000023,"1696708284":75.5600000000000023,"1696708300":75.5600000000000023,"1696708316":75.7400000000000091,"1696708332":75.7400000000000091,"1696708348":75.7400000000000091,"1696708364":75.7400000000000091,"1696708380":75.7400000000000091,"1696708396":75.7400000000000091,"1696708412":75.9200000000000159,"1696708428":75.9200000000000159,"1696708444":76.1000000000000227,"1696708460":76.1000000000000227,"1696708476":76.1000000000000227,"1696708492":76.1000000000000227,"1696708508":75.9200000000000159,"1696708524":75.9200000000000159,"1696708540":75.9200000000000159,"1696708556":75.9200000000000159,"1696708572":75.9200000000000159,"1696708588":75.9200000000000159,"1696708604":75.9200000000000159,"1696708620":75.9200000000000159,"1696708636":75.9200000000000159,"1696708652":75.7400000000000091,"1696708668":75.7400000000000091,"1696708684":75.7400000000000091,"1696708700":75.7400000000000091,"1696708717":75.9200000000000159,"1696708732":75.9200000000000159,"1696708748":75.9200000000000159,"1696708765":75.9200000000000159,"1696708780":75.9200000000000159,"1696708796":75.9200000000000159,"1696708812":75.9200000000000159,"1696708829":76.1000000000000227,"1696708844":76.1000000000000227,"1696708860":75.9200000000000159,"1696708877":75.9200000000000159,"1696708893":75.9200000000000159,"1696708909":75.9200000000000159,"1696708925":75.9200000000000159,"1696708941":75.9200000000000159,"1696708957":75.9200000000000159,"1696708972":75.9200000000000159,"1696708989":75.9200000000000159,"1696709004":75.9200000000000159,"1696709021":75.7400000000000091,"1696709037":75.7400000000000091,"1696709053":75.7400000000000091,"1696709069":75.7400000000000091,"1696709085":75.7400000000000091,"1696709101":75.7400000000000091,"1696709117":75.7400000000000091,"1696709133":75.7400000000000091,"1696709149":75.7400000000000091,"1696709165":75.7400000000000091,"1696709181":75.7400000000000091,"1696709197":75.7400000000000091,"1696709213":75.7400000000000091,"1696709229":75.9200000000000159,"1696709245":75.9200000000000159,"1696709261":75.7400000000000091,"1696709277":75.7400000000000091,"1696709293":75.7400000000000091,"1696709309":75.7400000000000091,"1696709325":75.7400000000000091,"1696709341":75.7400000000000091,"1696709357":75.7400000000000091,"1696709373":75.7400000000000091,"1696709389":75.7400000000000091,"1696709405":75.7400000000000091,"1696709421":75.7400000000000091,"1696709437":75.7400000000000091,"1696709453":75.7400000000000091,"1696709469":75.7400000000000091,"1696709485":75.7400000000000091,"1696709501":75.7400000000000091,"1696709517":75.7400000000000091,"1696709533":75.7400000000000091,"1696709549":75.7400000000000091,"1696709565":75.7400000000000091,"1696709581":75.9200000000000159,"1696709597":75.9200000000000159,"1696709613":75.9200000000000159,"1696709629":75.9200000000000159,"1696709645":75.7400000000000091,"1696709661":75.7400000000000091,"1696709677":75.7400000000000091,"1696709693":75.7400000000000091,"1696709709":75.7400000000000091,"1696709725":75.7400000000000091,"1696709741":75.7400000000000091,"1696709757":75.7400000000000091,"1696709773":75.7400000000000091,"1696709789":75.9200000000000159,"1696709805":75.9200000000000159,"1696709821":75.9200000000000159,"1696709837":75.9200000000000159,"1696709853":75.9200000000000159,"1696709869":75.9200000000000159,"1696709875":65.1199999999999761,"1696709885":75.9200000000000159,"1696709901":75.9200000000000159,"1696709917":75.7400000000000091,"1696709933":75.7400000000000091,"1696709950":75.9200000000000159,"1696709965":75.9200000000000159,"1696709981":75.9200000000000159,"1696709997":75.9200000000000159,"1696710013":75.9200000000000159,"1696710029":75.9200000000000159,"1696710045":75.9200000000000159,"1696710061":75.9200000000000159,"1696710077":75.9200000000000159,"1696710094":75.7400000000000091,"1696710109":75.7400000000000091,"1696710126":75.7400000000000091,"1696710142":75.7400000000000091,"1696710158":75.7400000000000091,"1696710173":75.7400000000000091,"1696710190":75.7400000000000091,"1696710205":75.7400000000000091,"1696710222":75.7400000000000091,"1696710237":75.7400000000000091,"1696710253":75.5600000000000023,"1696710270":75.5600000000000023,"1696710285":75.5600000000000023,"1696710302":75.5600000000000023,"1696710318":75.5600000000000023,"1696710334":75.7400000000000091,"1696710350":75.7400000000000091,"1696710366":75.5600000000000023,"1696710382":75.5600000000000023,"1696710398":75.7400000000000091,"1696710414":75.7400000000000091,"1696710430":75.5600000000000023,"1696710445":75.5600000000000023,"1696710462":75.5600000000000023,"1696710478":75.5600000000000023,"1696710493":75.5600000000000023,"1696710510":75.5600000000000023,"1696710526":75.5600000000000023,"1696710542":75.5600000000000023,"1696710558":75.5600000000000023,"1696710574":75.5600000000000023,"1696710590":75.5600000000000023,"1696710606":75.5600000000000023,"1696710622":75.5600000000000023,"1696710638":75.7400000000000091,"1696710654":75.7400000000000091,"1696710670":75.7400000000000091,"1696710686":75.7400000000000091,"1696710702":75.7400000000000091,"1696710718":75.7400000000000091,"1696710734":75.5600000000000023,"1696710750":75.5600000000000023,"1696710766":75.7400000000000091,"1696710782":75.7400000000000091,"1696710798":75.5600000000000023,"1696710814":75.3799999999999955,"1696710830":75.3799999999999955,"1696710846":75.3799999999999955,"1696710862":75.3799999999999955,"1696710878":75.3799999999999955,"1696710894":75.3799999999999955,"1696710910":75.5600000000000023,"1696710926":75.5600000000000023,"1696710942":75.5600000000000023,"1696710958":75.5600000000000023,"1696710974":75.5600000000000023,"1696710990":75.5600000000000023,"1696711006":75.5600000000000023,"1696711022":75.5600000000000023,"1696711038":75.5600000000000023,"1696711054":75.5600000000000023,"1696711070":75.5600000000000023,"1696711086":75.5600000000000023,"1696711102":75.5600000000000023,"1696711118":75.5600000000000023,"1696711134":75.5600000000000023,"1696711150":75.5600000000000023,"1696711166":75.5600000000000023,"1696711182":75.5600000000000023,"1696711198":75.5600000000000023,"1696711214":75.5600000000000023,"1696711230":75.5600000000000023,"1696711246":75.5600000000000023,"1696711262":75.5600000000000023,"1696711278":75.5600000000000023,"1696711294":75.5600000000000023,"1696711310":75.5600000000000023,"1696711326":75.5600000000000023,"1696711342":75.5600000000000023,"1696711358":75.5600000000000023,"1696711374":75.5600000000000023,"1696711391":75.5600000000000023,"1696711406":75.5600000000000023,"1696711422":75.5600000000000023,"1696711438":75.5600000000000023,"1696711455":75.5600000000000023,"1696711470":75.5600000000000023,"1696711486":75.7400000000000091,"1696711502":75.7400000000000091,"1696711518":75.7400000000000091,"1696711534":75.7400000000000091,"1696711550":75.5600000000000023,"1696711566":75.7400000000000091,"1696711582":75.7400000000000091,"1696711598":75.7400000000000091,"1696711614":75.7400000000000091,"1696711630":75.5600000000000023,"1696711646":75.5600000000000023,"1696711663":75.7400000000000091,"1696711674":64.9399999999999693,"1696711678":75.7400000000000091,"1696711694":75.5600000000000023,"1696711710":75.5600000000000023,"1696711727":75.5600000000000023,"1696711743":75.5600000000000023,"1696711758":75.7400000000000091,"1696711774":75.7400000000000091,"1696711791":75.7400000000000091,"1696711807":75.5600000000000023,"1696711823":75.5600000000000023,"1696711839":75.5600000000000023,"1696711855":75.5600000000000023,"1696711871":75.7400000000000091,"1696711887":75.7400000000000091,"1696711903":75.5600000000000023,"1696711919":75.5600000000000023,"1696711935":75.5600000000000023,"1696711951":75.5600000000000023,"1696711967":75.5600000000000023,"1696711983":75.5600000000000023,"1696711999":75.5600000000000023,"1696712015":75.5600000000000023,"1696712031":75.5600000000000023,"1696712047":75.5600000000000023,"1696712063":75.5600000000000023,"1696712079":75.7400000000000091,"1696712095":75.7400000000000091,"1696712111":75.7400000000000091,"1696712127":75.7400000000000091,"1696712143":75.9200000000000159,"1696712159":75.9200000000000159,"1696712175":75.9200000000000159,"1696712191":75.9200000000000159,"1696712207":75.9200000000000159,"1696712223":75.9200000000000159,"1696712239":75.9200000000000159,"1696712255":75.9200000000000159,"1696712271":75.9200000000000159,"1696712287":75.9200000000000159,"1696712303":76.2800000000000153,"1696712319":76.2800000000000153,"1696712335":76.2800000000000153,"1696712351":76.4600000000000222,"1696712367":76.4600000000000222,"1696712383":76.4600000000000222,"1696712399":76.4600000000000222,"1696712415":76.4600000000000222,"1696712431":76.4600000000000222,"1696712447":76.640000000000029,"1696712463":76.640000000000029,"1696712479":76.640000000000029,"1696712495":76.640000000000029,"1696712511":76.640000000000029,"1696712527":76.640000000000029,"1696712543":76.4600000000000222,"1696712587":76.2800000000000011,"1696712591":76.2800000000000153,"1696712607":76.2800000000000153,"1696712623":76.1000000000000085,"1696712639":76.1000000000000085,"1696712655":76.1000000000000085,"1696712671":76.1000000000000085,"1696712687":76.1000000000000085,"1696712703":76.1000000000000085,"1696712719":76.1000000000000085,"1696712735":76.1000000000000085,"1696712751":76.1000000000000085,"1696712767":76.1000000000000085,"1696712783":76.1000000000000085,"1696712799":76.1000000000000085,"1696712815":76.1000000000000085,"1696712831":76.1000000000000085,"1696712847":76.1000000000000085,"1696712863":75.9200000000000017,"1696712880":75.9200000000000017,"1696712896":75.9200000000000017,"1696712912":75.9200000000000017,"1696712927":75.7399999999999949,"1696712943":75.7399999999999949,"1696712959":75.7399999999999949,"1696712975":75.7399999999999949,"1696712991":75.7399999999999949,"1696713007":75.7399999999999949,"1696713024":75.9200000000000017,"1696713040":75.9200000000000017,"1696713056":75.7399999999999949,"1696713071":75.9200000000000017,"1696713088":75.9200000000000017,"1696713104":75.9200000000000017,"1696713120":75.9200000000000017,"1696713136":75.9200000000000017,"1696713152":75.9200000000000017,"1696713167":75.7399999999999949,"1696713184":75.7399999999999949,"1696713200":75.7399999999999949,"1696713216":75.7399999999999949,"1696713232":75.7399999999999949,"1696713248":75.7399999999999949,"1696713264":75.7399999999999949,"1696713280":75.7399999999999949,"1696713296":75.7399999999999949,"1696713311":75.7399999999999949,"1696713328":75.7399999999999949,"1696713344":75.7399999999999949,"1696713360":75.7399999999999949,"1696713376":75.7399999999999949,"1696713392":75.7399999999999949,"1696713408":75.5599999999999881,"1696713424":75.5599999999999881,"1696713440":75.7399999999999949,"1696713456":75.7399999999999949,"1696713472":75.5599999999999881,"1696713474":64.7599999999999625,"1696713488":75.5599999999999881,"1696713504":75.5599999999999881,"1696713520":75.5599999999999881,"1696713536":75.5599999999999881,"1696713552":75.5599999999999881,"1696713568":75.5599999999999881,"1696713584":75.5599999999999881,"1696713600":75.5599999999999881,"1696713616":75.5599999999999881,"1696713632":75.5599999999999881,"1696713648":75.7399999999999949,"1696713664":75.7399999999999949,"1696713680":75.7399999999999949,"1696713696":75.7399999999999949,"1696713712":75.7399999999999949,"1696713728":75.7399999999999949,"1696713744":75.7399999999999949,"1696713760":75.7399999999999949,"1696713776":75.7399999999999949,"1696713792":75.7399999999999949,"1696713808":75.7399999999999949,"1696713824":75.7399999999999949,"1696713840":75.7399999999999949,"1696713856":75.5599999999999881,"1696713872":75.5599999999999881,"1696713888":75.7399999999999949,"1696713904":75.7399999999999949,"1696713920":75.7399999999999949,"1696713936":75.7399999999999949,"1696713952":75.7399999999999949,"1696713968":75.7399999999999949,"1696713984":75.5599999999999881,"1696714000":75.5599999999999881,"1696714016":75.5599999999999881,"1696714032":75.5599999999999881,"1696714048":75.5599999999999881,"1696714064":75.5599999999999881,"1696714080":75.5599999999999881,"1696714096":75.7399999999999949,"1696714112":75.7399999999999949,"1696714128":75.7399999999999949,"1696714144":75.7399999999999949,"1696714160":75.5599999999999881,"1696714176":75.5599999999999881,"1696714192":75.7399999999999949,"1696714208":75.7399999999999949,"1696714224":75.7399999999999949,"1696714240":75.7399999999999949,"1696714256":75.5599999999999881,"1696714272":75.5599999999999881,"1696714288":75.5599999999999881,"1696714304":75.5599999999999881,"1696714320":75.5599999999999881,"1696714336":75.7399999999999949,"1696714352":75.7399999999999949,"1696714369":75.9200000000000017,"1696714384":75.9200000000000017,"1696714400":75.7399999999999949,"1696714416":75.7399999999999949,"1696714433":75.7399999999999949,"1696714448":75.7399999999999949,"1696714464":75.5599999999999881,"1696714481":75.5599999999999881,"1696714496":75.5599999999999881,"1696714512":75.5599999999999881,"1696714529":75.9199999999999875,"1696714544":75.9199999999999875,"1696714561":76.0999999999999943,"1696714577":76.0999999999999943,"1696714593":76.0999999999999943,"1696714608":76.0999999999999943,"1696714625":76.0999999999999943,"1696714641":76.2800000000000011,"1696714657":76.2800000000000011,"1696714673":76.0999999999999943,"1696714689":76.0999999999999943,"1696714705":76.0999999999999943,"1696714721":76.0999999999999943,"1696714737":76.0999999999999943,"1696714753":76.0999999999999943,"1696714769":76.2800000000000011,"1696714785":76.2800000000000011,"1696714801":76.2800000000000011,"1696714817":76.2800000000000011,"1696714833":76.2800000000000011,"1696714849":76.2800000000000011,"1696714865":76.2800000000000011,"1696714881":76.2800000000000011,"1696714897":76.2800000000000011,"1696714913":76.2800000000000011,"1696714929":76.2800000000000011,"1696714945":76.2800000000000011,"1696714961":76.2800000000000011,"1696714977":76.460000000000008,"1696714993":76.460000000000008,"1696715009":76.460000000000008,"1696715025":76.460000000000008,"1696715041":76.6400000000000148,"1696715057":76.8200000000000216,"1696715073":76.8200000000000216,"1696715089":76.8200000000000216,"1696715105":76.8200000000000216,"1696715121":76.8200000000000216,"1696715137":76.8200000000000216,"1696715153":77.0000000000000284,"1696715169":77.0000000000000284,"1696715185":76.640000000000029,"1696715201":76.640000000000029,"1696715217":76.640000000000029,"1696715233":76.640000000000029,"1696715249":76.4600000000000222,"1696715265":76.4600000000000222,"1696715281":76.4600000000000222,"1696715297":76.4600000000000222,"1696715313":76.2800000000000153,"1696715329":76.2800000000000153,"1696715345":76.2800000000000153,"1696715361":76.2800000000000153,"1696715377":76.2800000000000153,"1696715393":76.1000000000000085,"1696715409":76.1000000000000085,"1696715425":76.1000000000000085,"1696715441":76.1000000000000085,"1696715457":76.1000000000000085,"1696715473":76.1000000000000085,"1696715489":76.1000000000000085,"1696715505":76.1000000000000085,"1696715521":76.1000000000000085,"1696715537":76.1000000000000085,"1696715553":76.1000000000000085,"1696715569":75.9200000000000017,"1696715585":75.9200000000000017,"1696715601":76.1000000000000085,"1696715617":76.1000000000000085,"1696715633":75.9200000000000017,"1696715649":75.9200000000000017,"1696715665":75.9200000000000017,"1696715681":75.9200000000000017,"1696715697":75.9200000000000017,"1696715714":75.9200000000000017,"1696715729":76.1000000000000085,"1696715745":76.1000000000000085,"1696715762":75.9200000000000017,"1696715778":75.9200000000000017,"1696715794":75.9200000000000017,"1696715809":75.9200000000000017,"1696715826":75.9200000000000017,"1696715841":75.7399999999999949,"1696715858":75.7399999999999949,"1696715873":75.9200000000000017,"1696715890":75.9200000000000017,"1696715906":76.1000000000000085,"1696715921":76.1000000000000085,"1696715938":76.1000000000000085,"1696715953":76.1000000000000085,"1696715970":75.7400000000000091,"1696715985":75.7400000000000091,"1696716002":75.9200000000000159,"1696716018":75.9200000000000159,"1696716034":75.7400000000000091,"1696716050":75.7400000000000091,"1696716065":75.7400000000000091,"1696716082":75.7400000000000091,"1696716098":75.7400000000000091,"1696716114":75.9200000000000159,"1696716130":75.9200000000000159,"1696716146":75.9200000000000159,"1696716217":75.7400000000000091,"1696716226":75.7400000000000091,"1696716242":75.7400000000000091,"1696716258":75.7400000000000091,"1696716274":75.7400000000000091,"1696716290":75.7400000000000091,"1696716306":75.9200000000000159,"1696716322":75.7400000000000091,"1696716338":75.7400000000000091,"1696716354":75.7400000000000091,"1696716370":75.7400000000000091,"1696716386":75.5600000000000023,"1696716402":75.5600000000000023,"1696716418":75.5600000000000023,"1696716434":75.5600000000000023,"1696716450":75.5600000000000023,"1696716466":75.5600000000000023,"1696716482":75.7400000000000091,"1696716498":75.7400000000000091,"1696716514":75.5600000000000023,"1696716530":75.5600000000000023,"1696716546":75.5600000000000023,"1696716562":75.5600000000000023,"1696716578":75.5600000000000023,"1696716594":75.5600000000000023,"1696716610":75.5600000000000023,"1696716626":75.7400000000000091,"1696716642":75.7400000000000091,"1696716658":75.7400000000000091,"1696716674":75.7400000000000091,"1696716686":64.0399999999999636,"1696716690":75.5600000000000023,"1696716706":75.5600000000000023,"1696716722":75.5600000000000023,"1696716738":75.5600000000000023,"1696716754":75.5600000000000023,"1696716770":75.5600000000000023,"1696716786":75.5600000000000023,"1696716802":75.5600000000000023,"1696716818":75.5600000000000023,"1696716834":75.5600000000000023,"1696716850":75.5600000000000023,"1696716866":75.5600000000000023,"1696716882":75.5600000000000023,"1696716898":75.5600000000000023,"1696716914":75.5600000000000023,"1696716930":75.5600000000000023,"1696716947":75.5600000000000023,"1696716962":75.5600000000000023,"1696716978":75.5600000000000023,"1696716994":75.5600000000000023,"1696717010":75.5600000000000023,"1696717026":75.3799999999999955,"1696717042":75.3799999999999955,"1696717058":75.5600000000000023,"1696717074":75.5600000000000023,"1696717091":75.5600000000000023,"1696717106":75.3799999999999955,"1696717123":75.3799999999999955,"1696717138":75.3799999999999955,"1696717154":75.3799999999999955,"1696717171":75.1999999999999886,"1696717186":75.1999999999999886,"1696717202":75.3799999999999955,"1696717218":75.3799999999999955,"1696717234":75.5600000000000023,"1696717250":75.5600000000000023,"1696717267":75.3799999999999955,"1696717283":75.3799999999999955,"1696717299":75.3799999999999955,"1696717315":75.3799999999999955,"1696717331":75.3799999999999955,"1696717347":75.3799999999999955,"1696717363":75.3799999999999955,"1696717379":75.3799999999999955,"1696717395":75.3799999999999955,"1696717411":75.1999999999999886,"1696717427":75.1999999999999886,"1696717443":75.1999999999999886,"1696717458":75.1999999999999886,"1696717475":75.3799999999999955,"1696717491":75.3799999999999955,"1696717507":75.3799999999999955,"1696717523":75.3799999999999955,"1696717539":75.3799999999999955,"1696717555":75.3799999999999955,"1696717571":75.3799999999999955,"1696717587":75.3799999999999955,"1696717603":75.3799999999999955,"1696717619":75.3799999999999955,"1696717635":75.3799999999999955,"1696717651":75.1999999999999886,"1696717667":75.1999999999999886,"1696717683":75.1999999999999886,"1696717699":75.1999999999999886,"1696717715":75.1999999999999886,"1696717731":75.1999999999999886,"1696717747":75.1999999999999886,"1696717763":75.1999999999999886,"1696717779":75.1999999999999886,"1696717795":75.1999999999999886,"1696717811":75.5599999999999881,"1696717827":75.5599999999999881,"1696717843":75.5599999999999881,"1696717859":75.7399999999999949,"1696717875":75.7399999999999949,"1696717891":75.5599999999999881,"1696717907":75.5599999999999881,"1696717923":75.5599999999999881,"1696717939":75.5599999999999881,"1696717955":75.3799999999999812,"1696717971":75.3799999999999812,"1696717987":75.5599999999999881,"1696718003":75.5599999999999881,"1696718019":75.5599999999999881,"1696718035":75.5599999999999881,"1696718051":75.5599999999999881,"1696718067":75.5599999999999881,"1696718083":75.5599999999999881,"1696718099":75.5599999999999881,"1696718115":75.5599999999999881,"1696718131":75.5599999999999881,"1696718147":75.5599999999999881,"1696718163":75.3799999999999812,"1696718179":75.3799999999999812,"1696718195":75.3799999999999812,"1696718211":75.3799999999999812,"1696718227":75.3799999999999812,"1696718244":75.3799999999999812,"1696718259":75.3799999999999812,"1696718275":75.3799999999999812,"1696718291":75.3799999999999812,"1696718307":75.3799999999999812,"1696718323":75.3799999999999812,"1696718339":75.3799999999999812,"1696718355":75.3799999999999812,"1696718371":75.3799999999999812,"1696718387":75.3799999999999812,"1696718403":75.3799999999999812,"1696718419":75.3799999999999812,"1696718435":75.3799999999999812,"1696718451":75.3799999999999812,"1696718467":75.3799999999999812,"1696718483":75.3799999999999812,"1696718486":63.6799999999999642,"1696718500":75.3799999999999812,"1696718515":75.3799999999999812,"1696718532":75.1999999999999744,"1696718547":75.1999999999999744,"1696718563":75.1999999999999744,"1696718579":75.1999999999999744,"1696718595":75.1999999999999744,"1696718612":75.1999999999999744,"1696718628":75.1999999999999744,"1696718644":75.1999999999999744,"1696718660":75.1999999999999744,"1696718675":75.1999999999999744,"1696718692":75.1999999999999744,"1696718708":75.1999999999999744,"1696718723":75.1999999999999744,"1696718740":75.1999999999999744,"1696718755":75.1999999999999744,"1696718772":75.1999999999999744,"1696718788":75.1999999999999744,"1696718804":75.0199999999999676,"1696718820":75.1999999999999744,"1696718836":75.1999999999999744,"1696718852":75.1999999999999744,"1696718868":75.1999999999999744,"1696718884":75.1999999999999744,"1696718900":75.1999999999999744,"1696718916":75.1999999999999744,"1696718932":75.1999999999999744,"1696718948":75.0199999999999676,"1696718964":75.0199999999999676,"1696718980":75.1999999999999744,"1696718996":75.1999999999999744,"1696719012":75.1999999999999744,"1696719028":75.1999999999999744,"1696719044":75.1999999999999744,"1696719060":75.1999999999999744,"1696719076":75.2000000000000028,"1696719092":75.2000000000000028,"1696719108":75.2000000000000028,"1696719124":75.2000000000000028,"1696719140":75.2000000000000028,"1696719156":75.2000000000000028,"1696719172":75.2000000000000028,"1696719188":75.019999999999996,"1696719204":75.019999999999996,"1696719220":75.019999999999996,"1696719236":75.019999999999996,"1696719252":75.019999999999996,"1696719268":75.019999999999996,"1696719284":75.019999999999996,"1696719300":75.019999999999996,"1696719316":75.019999999999996,"1696719332":75.2000000000000028,"1696719348":75.2000000000000028,"1696719364":75.2000000000000028,"1696719380":75.2000000000000028,"1696719396":75.019999999999996,"1696719412":75.019999999999996,"1696719428":75.019999999999996,"1696719444":75.019999999999996,"1696719460":75.019999999999996,"1696719476":75.019999999999996,"1696719492":75.019999999999996,"1696719508":75.019999999999996,"1696719524":75.019999999999996,"1696719540":75.019999999999996,"1696719557":74.8399999999999892,"1696719572":75.019999999999996,"1696719588":75.019999999999996,"1696719604":74.8399999999999892,"1696719620":74.8399999999999892,"1696719636":74.8399999999999892,"1696719652":74.8399999999999892,"1696719668":74.8399999999999892,"1696719684":74.8399999999999892,"1696719700":74.8399999999999892,"1696719716":74.8399999999999892,"1696719732":74.8399999999999892,"1696719748":74.8399999999999892,"1696719820":74.8400000000000034,"1696719828":74.8399999999999892,"1696719844":74.6599999999999824,"1696719860":74.6599999999999824,"1696719876":74.6599999999999824,"1696719892":74.6599999999999824,"1696719908":74.6599999999999824,"1696719924":74.6599999999999824,"1696719941":74.6599999999999824,"1696719956":74.6599999999999824,"1696719972":74.6599999999999824,"1696719988":74.6599999999999824,"1696720005":74.6599999999999824,"1696720020":74.6599999999999824,"1696720036":74.6599999999999824,"1696720052":74.6599999999999824,"1696720068":74.6599999999999824,"1696720085":74.6599999999999824,"1696720101":74.6599999999999824,"1696720117":74.6599999999999824,"1696720133":74.6599999999999824,"1696720149":74.4799999999999756,"1696720164":74.4799999999999756,"1696720181":74.4799999999999756,"1696720197":74.4799999999999756,"1696720212":74.6599999999999824,"1696720229":74.6599999999999824,"1696720245":74.6599999999999824,"1696720261":74.6599999999999824,"1696720277":74.4799999999999756,"1696720286":63.3199999999999648,"1696720293":74.4799999999999756,"1696720309":74.4799999999999756,"1696720325":74.4799999999999756,"1696720341":74.4799999999999756,"1696720357":74.4799999999999756,"1696720373":74.4799999999999756,"1696720389":74.4799999999999756,"1696720405":74.4799999999999756,"1696720421":74.4799999999999756,"1696720437":74.4799999999999756,"1696720453":74.4799999999999756,"1696720469":74.4799999999999756,"1696720485":74.4799999999999756,"1696720501":74.4799999999999756,"1696720517":74.4799999999999756,"1696720533":74.4799999999999756,"1696720549":74.4799999999999756,"1696720565":74.4799999999999756,"1696720581":74.4799999999999756,"1696720597":74.4799999999999756,"1696720613":74.4799999999999756,"1696720629":74.4799999999999756,"1696720645":74.4799999999999756,"1696720661":74.2999999999999687,"1696720677":74.2999999999999687,"1696720693":74.2999999999999687,"1696720709":74.2999999999999687,"1696720725":74.4799999999999756,"1696720741":74.4799999999999756,"1696720757":74.4799999999999756,"1696720773":74.4799999999999756,"1696720789":74.4799999999999756,"1696720805":74.4799999999999756,"1696720821":74.4799999999999756,"1696720837":74.4799999999999756,"1696720853":74.4799999999999756,"1696720869":74.4799999999999756,"1696720885":74.4799999999999756,"1696720901":74.4799999999999756,"1696720917":74.4799999999999756,"1696720933":74.4799999999999756,"1696720949":74.4799999999999756,"1696720965":74.4799999999999756,"1696720981":74.4799999999999756,"1696720997":74.2999999999999687,"1696721013":74.2999999999999687,"1696721030":74.2999999999999972,"1696721045":74.2999999999999972,"1696721061":74.480000000000004,"1696721077":74.480000000000004,"1696721094":74.480000000000004,"1696721109":74.480000000000004,"1696721125":74.480000000000004,"1696721141":74.480000000000004,"1696721158":74.480000000000004,"1696721173":74.480000000000004,"1696721189":74.480000000000004,"1696721205":74.480000000000004,"1696721222":74.480000000000004,"1696721237":74.2999999999999972,"1696721253":74.2999999999999972,"1696721269":74.2999999999999972,"1696721285":74.2999999999999972,"1696721302":74.2999999999999972,"1696721317":74.2999999999999972,"1696721333":74.2999999999999972,"1696721350":74.2999999999999972,"1696721365":74.2999999999999972,"1696721381":74.2999999999999972,"1696721397":74.2999999999999972,"1696721413":74.2999999999999972,"1696721429":74.2999999999999972,"1696721446":74.2999999999999972,"1696721462":74.2999999999999972,"1696721477":74.2999999999999972,"1696721494":74.2999999999999972,"1696721509":74.2999999999999972,"1696721526":74.2999999999999972,"1696721542":74.2999999999999972,"1696721557":74.2999999999999972,"1696721574":74.2999999999999972,"1696721590":74.2999999999999972,"1696721606":74.2999999999999972,"1696721622":74.2999999999999972,"1696721638":74.2999999999999972,"1696721654":74.2999999999999972,"1696721670":74.2999999999999972,"1696721686":74.2999999999999972,"1696721702":74.2999999999999972,"1696721718":74.2999999999999972,"1696721734":74.2999999999999972,"1696721750":74.1199999999999903,"1696721766":74.1199999999999903,"1696721782":74.2999999999999972,"1696721798":74.2999999999999972,"1696721814":74.2999999999999972,"1696721830":74.2999999999999972,"1696721846":74.2999999999999972,"1696721862":74.2999999999999972,"1696721878":74.2999999999999972,"1696721894":74.1199999999999903,"1696721910":74.1199999999999903,"1696721926":74.2999999999999972,"1696721942":74.2999999999999972,"1696721958":74.1199999999999903,"1696721974":74.1199999999999903,"1696721990":74.1199999999999903,"1696722006":74.1199999999999903,"1696722022":74.1199999999999903,"1696722038":74.1199999999999903,"1696722054":74.2999999999999972,"1696722070":74.2999999999999972,"1696722086":68.6299999999999812,"1696722102":74.1199999999999903,"1696722118":74.1199999999999903,"1696722134":74.1199999999999903,"1696722150":74.1199999999999903,"1696722166":74.1199999999999903,"1696722182":74.1199999999999903,"1696722198":74.1199999999999903,"1696722214":74.1199999999999903,"1696722230":74.1199999999999903,"1696722246":74.1199999999999903,"1696722262":74.1199999999999903,"1696722278":74.1199999999999903,"1696722294":74.1199999999999903,"1696722310":74.1199999999999903,"1696722326":74.1199999999999903,"1696722342":74.1199999999999903,"1696722358":74.1199999999999903,"1696722374":74.1199999999999903,"1696722390":74.1199999999999903,"1696722406":74.1199999999999903,"1696722422":74.1199999999999903,"1696722438":74.1199999999999903,"1696722454":74.1199999999999903,"1696722471":74.1199999999999903,"1696722486":74.1199999999999903,"1696722502":74.1199999999999903,"1696722518":74.1199999999999903,"1696722535":74.1199999999999903,"1696722550":74.1199999999999903,"1696722566":74.1200000000000045,"1696722582":73.9399999999999977,"1696722598":73.9399999999999977,"1696722614":73.9399999999999977,"1696722630":73.9399999999999977,"1696722646":73.9399999999999977,"1696722662":73.9399999999999977,"1696722678":73.9399999999999977,"1696722694":73.9399999999999977,"1696722710":74.1200000000000045,"1696722726":74.1200000000000045,"1696722742":74.1200000000000045,"1696722758":74.1200000000000045,"1696722774":74.1200000000000045,"1696722790":74.1200000000000045,"1696722807":73.9399999999999977,"1696722822":73.9399999999999977,"1696722839":74.1200000000000045,"1696722855":74.1200000000000045,"1696722870":74.1200000000000045,"1696722887":74.1200000000000045,"1696722903":74.1200000000000045,"1696722919":73.9399999999999977,"1696722935":73.9399999999999977,"1696722951":73.9399999999999977,"1696722967":73.9399999999999977,"1696722982":73.9399999999999977,"1696722999":73.9399999999999977,"1696723015":74.1200000000000045,"1696723031":74.1200000000000045,"1696723047":74.1200000000000045,"1696723063":74.1200000000000045,"1696723079":73.9399999999999977,"1696723095":74.1200000000000045,"1696723111":74.1200000000000045,"1696723127":73.9399999999999977,"1696723143":73.9399999999999977,"1696723159":73.9399999999999977,"1696723175":73.9399999999999977,"1696723191":73.9399999999999977,"1696723207":73.9399999999999977,"1696723223":74.1200000000000045,"1696723239":74.1200000000000045,"1696723255":74.1200000000000045,"1696723271":74.1200000000000045,"1696723287":74.1200000000000045,"1696723303":74.1200000000000045,"1696723319":74.1200000000000045,"1696723335":73.9399999999999977,"1696723465":73.9399999999999977,"1696723479":73.9399999999999977,"1696723495":73.9399999999999977,"1696723511":73.9399999999999977,"1696723527":73.9399999999999977,"1696723543":73.9399999999999977,"1696723559":73.9399999999999977,"1696723575":73.9399999999999977,"1696723591":73.9399999999999977,"1696723607":73.9399999999999977,"1696723623":73.9399999999999977,"1696723639":73.9399999999999977,"1696723655":73.9399999999999977,"1696723671":73.9399999999999977,"1696723687":73.9399999999999977,"1696723703":74.1200000000000045,"1696723719":74.1200000000000045,"1696723735":74.1200000000000045,"1696723751":74.1200000000000045,"1696723767":74.1200000000000045,"1696723783":74.1200000000000045,"1696723799":74.1200000000000045,"1696723815":74.1200000000000045,"1696723831":73.9399999999999977,"1696723847":73.9399999999999977,"1696723863":73.9399999999999977,"1696723879":73.9399999999999977,"1696723886":62.7800000000000011,"1696723895":73.9399999999999977,"1696723911":73.9399999999999977,"1696723927":73.9399999999999977,"1696723943":73.9399999999999977,"1696723959":73.9399999999999977,"1696723975":73.9399999999999977,"1696723991":73.9399999999999977,"1696724007":73.9399999999999977,"1696724023":73.9399999999999977,"1696724039":73.9399999999999977,"1696724056":73.9399999999999977,"1696724072":73.9399999999999977,"1696724088":73.7599999999999909,"1696724103":73.7599999999999909,"1696724119":73.7599999999999909,"1696724136":73.7599999999999909,"1696724151":73.7599999999999909,"1696724167":73.7599999999999909,"1696724184":73.7599999999999909,"1696724199":73.7599999999999909,"1696724215":73.7599999999999909,"1696724231":73.7599999999999909,"1696724247":73.7599999999999909,"1696724264":73.7599999999999909,"1696724280":73.7599999999999909,"1696724296":73.7599999999999909,"1696724312":73.7599999999999909,"1696724327":73.7599999999999909,"1696724344":73.7599999999999909,"1696724360":73.7599999999999909,"1696724376":73.7599999999999909,"1696724391":73.7599999999999909,"1696724408":73.7599999999999909,"1696724424":73.7599999999999909,"1696724439":73.7599999999999909,"1696724456":73.7599999999999909,"1696724472":73.7599999999999909,"1696724488":73.7599999999999909,"1696724504":73.7599999999999909,"1696724520":73.7599999999999909,"1696724536":73.7599999999999909,"1696724552":73.7599999999999909,"1696724568":73.7599999999999909,"1696724584":73.7599999999999909,"1696724600":73.7599999999999909,"1696724616":73.7599999999999909,"1696724632":73.7599999999999909,"1696724648":73.7599999999999909,"1696724664":73.7599999999999909,"1696724680":73.7599999999999909,"1696724696":73.7599999999999909,"1696724712":73.7599999999999909,"1696724728":73.7599999999999909,"1696724744":73.7599999999999909,"1696724760":73.7599999999999909,"1696724776":73.7599999999999909,"1696724792":73.7599999999999909,"1696724808":73.7599999999999909,"1696724824":73.7599999999999909,"1696724840":73.7599999999999909,"1696724856":73.7599999999999909,"1696724872":73.7599999999999909,"1696724888":73.7599999999999909,"1696724904":73.7599999999999909,"1696724920":73.7599999999999909,"1696724936":73.7599999999999909,"1696724952":73.7599999999999909,"1696724968":73.7599999999999909,"1696724984":73.7599999999999909,"1696725000":73.7599999999999909,"1696725016":73.7599999999999909,"1696725032":73.7599999999999909,"1696725048":73.7599999999999909,"1696725064":73.7599999999999909,"1696725080":73.7599999999999909,"1696725096":73.7599999999999909,"1696725112":73.7599999999999909,"1696725128":73.7599999999999909,"1696725144":73.7599999999999909,"1696725160":73.7599999999999909,"1696725176":73.7599999999999909,"1696725192":73.7599999999999909,"1696725208":73.7599999999999909,"1696725224":73.7599999999999909,"1696725240":73.7599999999999909,"1696725256":73.7599999999999909,"1696725272":73.7599999999999909,"1696725288":73.7599999999999909,"1696725304":73.7599999999999909,"1696725320":73.7599999999999909,"1696725336":73.7599999999999909,"1696725352":73.7599999999999909,"1696725368":73.7599999999999909,"1696725384":73.7599999999999909,"1696725400":73.7599999999999909,"1696725416":73.5799999999999841,"1696725432":73.5799999999999841,"1696725448":73.7599999999999909,"1696725464":73.7599999999999909,"1696725480":73.7599999999999909,"1696725496":73.7599999999999909,"1696725513":73.7599999999999909,"1696725529":73.7599999999999909,"1696725545":73.5799999999999841,"1696725561":73.5799999999999841,"1696725577":73.5799999999999841,"1696725592":73.7599999999999909,"1696725609":73.7599999999999909,"1696725625":73.5799999999999841,"1696725641":73.5799999999999841,"1696725656":73.5799999999999841,"1696725673":73.5799999999999841,"1696725686":62.4200000000000017,"1696725689":73.5799999999999841,"1696725704":73.5799999999999841,"1696725721":73.5799999999999841,"1696725736":73.5799999999999841,"1696725752":73.5799999999999841,"1696725769":73.5799999999999841,"1696725785":73.7599999999999909,"1696725801":73.7599999999999909,"1696725817":73.7599999999999909,"1696725833":73.7599999999999909,"1696725849":73.7599999999999909,"1696725865":73.7599999999999909,"1696725881":73.7599999999999909,"1696725897":73.7599999999999909,"1696725913":73.7599999999999909,"1696725929":73.7599999999999909,"1696725945":73.7599999999999909,"1696725961":73.5799999999999841,"1696725977":73.5799999999999841,"1696725993":73.5799999999999841,"1696726009":73.5799999999999841,"1696726025":73.5799999999999841,"1696726041":73.5799999999999841,"1696726057":73.5799999999999841,"1696726073":73.5799999999999841,"1696726089":73.5799999999999841,"1696726105":73.5799999999999841,"1696726121":73.5799999999999841,"1696726137":73.5799999999999841,"1696726153":73.5799999999999841,"1696726169":73.5799999999999841,"1696726185":73.5799999999999841,"1696726201":73.5799999999999841,"1696726217":73.5799999999999841,"1696726233":73.5799999999999841,"1696726249":73.5799999999999841,"1696726265":73.5799999999999841,"1696726281":73.5799999999999841,"1696726297":73.5799999999999841,"1696726313":73.5799999999999841,"1696726329":73.5799999999999841,"1696726345":73.5799999999999841,"1696726361":73.5799999999999841,"1696726377":73.5799999999999841,"1696726393":73.5799999999999841,"1696726409":73.5799999999999841,"1696726425":73.5799999999999841,"1696726441":73.5799999999999841,"1696726457":73.5799999999999841,"1696726473":73.5799999999999841,"1696726489":73.5799999999999841,"1696726505":73.5799999999999841,"1696726521":73.5799999999999841,"1696726537":73.5799999999999841,"1696726553":73.5799999999999841,"1696726569":73.5799999999999841,"1696726585":73.5799999999999841,"1696726602":73.5799999999999841,"1696726617":73.5799999999999841,"1696726633":73.5799999999999841,"1696726649":73.5799999999999841,"1696726665":73.5799999999999841,"1696726681":73.5799999999999841,"1696726697":73.5799999999999841,"1696726713":73.5799999999999841,"1696726729":73.5799999999999841,"1696726746":73.5799999999999841,"1696726761":73.5799999999999841,"1696726778":73.7599999999999909,"1696726793":73.7599999999999909,"1696726809":73.7599999999999909,"1696726825":73.7599999999999909,"1696726842":73.7599999999999909,"1696726857":73.7599999999999909,"1696726873":73.7599999999999909,"1696726889":73.5799999999999841,"1696726906":73.5799999999999841,"1696726921":73.7599999999999909,"1696726938":73.7599999999999909,"1696726954":73.5799999999999841,"1696726970":73.5799999999999841,"1696726986":73.5799999999999841,"1696727001":73.5799999999999841,"1696727018":73.7599999999999909,"1696727034":73.7599999999999909,"1696727049":73.5799999999999841,"1696727066":73.5799999999999841,"1696727082":73.7599999999999909,"1696727098":73.7599999999999909,"1696727114":73.7599999999999909,"1696727130":73.7599999999999909,"1696727146":73.7599999999999909,"1696727161":73.5799999999999983,"1696727178":73.5799999999999983,"1696727194":73.5799999999999983,"1696727210":73.5799999999999983,"1696727226":73.5799999999999983,"1696727242":73.5799999999999983,"1696727258":73.7600000000000051,"1696727274":73.7600000000000051,"1696727290":73.5799999999999983,"1696727306":73.5799999999999983,"1696727322":73.5799999999999983,"1696727338":73.5799999999999983,"1696727354":73.5799999999999983,"1696727370":73.5799999999999983,"1696727386":73.5799999999999983,"1696727402":73.5799999999999983,"1696727418":73.5799999999999983,"1696727434":73.7600000000000051,"1696727450":73.7600000000000051,"1696727466":73.7600000000000051,"1696727482":73.7600000000000051,"1696727486":62.240000000000002,"1696727498":73.9400000000000119,"1696727514":73.9400000000000119,"1696727530":73.9400000000000119,"1696727546":73.9400000000000119,"1696727562":73.7600000000000051,"1696727578":73.7600000000000051,"1696727594":73.7600000000000051,"1696727610":73.7600000000000051,"1696727626":73.7600000000000051,"1696727642":73.7600000000000051,"1696727658":73.7600000000000051,"1696727674":73.7600000000000051,"1696727690":73.7600000000000051,"1696727706":73.5799999999999983,"1696727722":73.5799999999999983,"1696727738":73.5799999999999983,"1696727754":73.5799999999999983,"1696727771":73.7600000000000051,"1696727786":73.7600000000000051,"1696727802":73.5799999999999983,"1696727818":73.5799999999999983,"1696727834":73.7600000000000051,"1696727850":73.5799999999999983,"1696727866":73.5799999999999983,"1696727882":73.5799999999999983,"1696727898":73.5799999999999983,"1696727914":73.5799999999999983,"1696727930":73.5799999999999983,"1696727946":73.5799999999999983,"1696727962":73.5799999999999983,"1696727978":73.5799999999999983,"1696727994":73.5799999999999983,"1696728010":73.5799999999999983,"1696728026":73.5799999999999983,"1696728042":73.5799999999999983,"1696728058":73.5799999999999983,"1696728074":73.5799999999999983,"1696728090":73.5799999999999983,"1696728106":73.5799999999999983,"1696728122":73.5799999999999983,"1696728138":73.5799999999999983,"1696728154":73.5799999999999983,"1696728170":73.5799999999999983,"1696728186":73.5799999999999983,"1696728202":73.5799999999999983,"1696728218":73.5799999999999983,"1696728234":73.5799999999999983,"1696728250":73.3999999999999915,"1696728266":73.3999999999999915,"1696728282":73.5799999999999983,"1696728298":73.5799999999999983,"1696728314":73.5799999999999983,"1696728330":73.5799999999999983,"1696728346":73.5799999999999983,"1696728362":73.3999999999999915,"1696728379":73.3999999999999915,"1696728394":73.3999999999999915,"1696728411":73.3999999999999915,"1696728427":73.3999999999999915,"1696728442":73.3999999999999915,"1696728459":73.3999999999999915,"1696728475":73.3999999999999915,"1696728490":73.3999999999999915,"1696728507":73.3999999999999915,"1696728523":73.3999999999999915,"1696728539":73.3999999999999915,"1696728555":73.3999999999999915,"1696728571":73.3999999999999915,"1696728587":73.3999999999999915,"1696728603":73.3999999999999915,"1696728619":73.3999999999999915,"1696728635":73.3999999999999915,"1696728651":73.3999999999999915,"1696728667":73.3999999999999915,"1696728683":73.3999999999999915,"1696728699":73.3999999999999915,"1696728715":73.3999999999999915,"1696728731":73.3999999999999915,"1696728747":73.3999999999999915,"1696728763":73.3999999999999915,"1696728779":73.3999999999999915,"1696728795":73.3999999999999915,"1696728811":73.3999999999999915,"1696728827":73.3999999999999915,"1696728843":73.3999999999999915,"1696728859":73.3999999999999915,"1696728875":73.3999999999999915,"1696728891":73.3999999999999915,"1696728907":73.3999999999999915,"1696728923":73.3999999999999915,"1696728939":73.3999999999999915,"1696728955":73.3999999999999915,"1696728971":73.3999999999999915,"1696728987":73.3999999999999915,"1696729003":73.3999999999999915,"1696729019":73.3999999999999915,"1696729035":73.3999999999999915,"1696729051":73.3999999999999915,"1696729067":73.5799999999999983,"1696729083":73.5799999999999983,"1696729099":73.7600000000000051,"1696729115":73.9400000000000119,"1696729131":73.9400000000000119,"1696729147":74.1200000000000188,"1696729163":74.1200000000000188,"1696729179":74.3000000000000256,"1696729195":74.3000000000000256,"1696729211":74.3000000000000256,"1696729227":74.2999999999999972,"1696729243":74.480000000000004,"1696729259":74.480000000000004,"1696729275":74.6600000000000108,"1696729286":61.8800000000000026,"1696729291":74.6600000000000108,"1696729307":74.6600000000000108,"1696729323":74.6600000000000108,"1696729339":74.8400000000000176,"1696729355":74.8400000000000176,"1696729371":74.8400000000000176,"1696729387":75.0200000000000244,"1696729403":75.0200000000000244,"1696729419":75.0200000000000244,"1696729435":75.0200000000000244,"1696729451":75.0200000000000244,"1696729467":75.0200000000000244,"1696729483":75.2000000000000313,"1696729499":75.2000000000000313,"1696729515":75.2000000000000313,"1696729531":75.2000000000000313,"1696729547":75.2000000000000313,"1696729563":75.2000000000000313,"1696729579":75.2000000000000313,"1696729596":75.2000000000000313,"1696729611":75.3800000000000381,"1696729627":75.3800000000000381,"1696729643":75.3800000000000381,"1696729660":75.3800000000000381,"1696729675":75.3800000000000381,"1696729691":75.3800000000000381,"1696729708":75.3800000000000381,"1696729724":75.3800000000000381,"1696729739":75.3800000000000381,"1696729755":75.5600000000000449,"1696729772":75.5600000000000449,"1696729788":75.5600000000000449,"1696729803":75.5600000000000449,"1696729819":75.5600000000000449,"1696729835":75.5600000000000449,"1696729852":75.5600000000000449,"1696729868":75.5600000000000449,"1696729884":75.5600000000000449,"1696729900":75.5600000000000449,"1696729916":75.5600000000000449,"1696729932":75.7400000000000517,"1696729948":75.7400000000000517,"1696729964":75.7400000000000517,"1696729980":75.7400000000000517,"1696729996":75.7400000000000517,"1696730012":75.7400000000000517,"1696730028":75.7400000000000517,"1696730044":75.7400000000000517,"1696730060":75.7400000000000517,"1696730076":75.7400000000000517,"1696730092":75.7400000000000517,"1696730108":75.7400000000000517,"1696730124":75.7400000000000517,"1696730140":75.7400000000000517,"1696730156":75.7400000000000517,"1696730172":75.7400000000000517,"1696730188":75.7400000000000517,"1696730204":75.9200000000000585,"1696730220":75.9200000000000585,"1696730236":75.9200000000000585,"1696730252":75.9200000000000585,"1696730268":75.9200000000000585,"1696730284":75.9200000000000585,"1696730300":75.9200000000000585,"1696730316":75.9200000000000585,"1696730332":75.9200000000000585,"1696730348":75.9200000000000585,"1696730364":75.9200000000000585,"1696730380":75.9200000000000585,"1696730396":75.9200000000000585,"1696730412":75.9200000000000585,"1696730428":75.9200000000000585,"1696730444":75.9200000000000585,"1696730460":75.9200000000000585,"1696730476":75.9200000000000585,"1696730492":75.9200000000000585,"1696730508":75.9200000000000585,"1696730524":75.9200000000000585,"1696730540":75.9200000000000585,"1696730603":75.9200000000000017,"1696730604":75.9200000000000585,"1696730620":75.9200000000000585,"1696730636":75.9200000000000585,"1696730652":75.9200000000000585,"1696730668":75.9200000000000585,"1696730684":76.1000000000000654,"1696730700":76.1000000000000654,"1696730716":76.1000000000000654,"1696730732":76.1000000000000654,"1696730748":75.9200000000000585,"1696730764":75.9200000000000585,"1696730780":75.9200000000000585,"1696730796":75.9200000000000585,"1696730812":75.9200000000000585,"1696730828":75.9200000000000585,"1696730844":75.9200000000000585,"1696730860":76.1000000000000654,"1696730876":76.1000000000000654,"1696730892":76.1000000000000654,"1696730908":76.1000000000000654,"1696730924":76.1000000000000654,"1696730940":76.1000000000000654,"1696730956":76.1000000000000654,"1696730973":76.1000000000000654,"1696730988":76.1000000000000654,"1696731004":76.1000000000000654,"1696731020":76.1000000000000654,"1696731037":76.1000000000000654,"1696731052":76.1000000000000654,"1696731069":76.1000000000000654,"1696731084":76.1000000000000654,"1696731086":61.7000000000000028,"1696731101":76.0999999999999943,"1696731116":76.0999999999999943,"1696731132":76.0999999999999943,"1696731149":76.0999999999999943,"1696731164":76.0999999999999943,"1696731180":76.0999999999999943,"1696731197":76.0999999999999943,"1696731213":76.0999999999999943,"1696731228":76.0999999999999943,"1696731245":76.0999999999999943,"1696731261":76.2800000000000011,"1696731277":76.2800000000000011,"1696731293":76.2800000000000011,"1696731309":76.2800000000000011,"1696731325":76.2800000000000011,"1696731341":76.2800000000000011,"1696731357":76.0999999999999943,"1696731372":76.2800000000000011,"1696731389":76.2800000000000011,"1696731405":76.2800000000000011,"1696731421":76.2800000000000011,"1696731437":76.2800000000000011,"1696731453":76.2800000000000011,"1696731469":76.2800000000000011,"1696731485":76.2800000000000011,"1696731501":76.2800000000000011,"1696731517":76.2800000000000011,"1696731533":76.2800000000000011,"1696731549":76.2800000000000011,"1696731565":76.2800000000000011,"1696731581":76.2800000000000011,"1696731597":76.2800000000000011,"1696731613":76.2800000000000011,"1696731629":76.2800000000000011,"1696731645":76.2800000000000011,"1696731661":76.2800000000000011,"1696731677":76.2800000000000011,"1696731693":76.2800000000000011,"1696731709":76.2800000000000011,"1696731725":76.2800000000000011,"1696731741":76.2800000000000011,"1696731757":76.2800000000000011,"1696731773":76.2800000000000011,"1696731789":76.2800000000000011,"1696731805":76.2800000000000011,"1696731821":76.2800000000000011,"1696731837":76.2800000000000011,"1696731853":76.2800000000000011,"1696731869":76.2800000000000011,"1696731885":76.2800000000000011,"1696731901":76.2800000000000011,"1696731917":76.2800000000000011,"1696731933":76.2800000000000011,"1696731949":76.2800000000000011,"1696731965":76.2800000000000011,"1696731981":76.2800000000000011,"1696731997":76.2800000000000011,"1696732013":76.2800000000000011,"1696732029":76.2800000000000011,"1696732045":76.2800000000000011,"1696732061":76.2800000000000011,"1696732077":76.2800000000000011,"1696732093":76.2800000000000011,"1696732109":76.460000000000008,"1696732125":76.460000000000008,"1696732141":76.460000000000008,"1696732157":76.460000000000008,"1696732174":76.460000000000008,"1696732189":76.460000000000008,"1696732206":76.460000000000008,"1696732221":76.460000000000008,"1696732238":76.460000000000008,"1696732253":76.460000000000008,"1696732269":76.460000000000008,"1696732285":76.460000000000008,"1696732301":76.460000000000008,"1696732317":76.460000000000008,"1696732333":76.460000000000008,"1696732349":76.460000000000008,"1696732366":76.460000000000008,"1696732381":76.460000000000008,"1696732397":76.460000000000008,"1696732414":76.460000000000008,"1696732429":76.460000000000008,"1696732445":76.460000000000008,"1696732461":76.460000000000008,"1696732477":76.460000000000008,"1696732493":76.460000000000008,"1696732509":76.460000000000008,"1696732525":76.460000000000008,"1696732542":76.460000000000008,"1696732558":76.460000000000008,"1696732574":76.460000000000008,"1696732590":76.460000000000008,"1696732605":76.460000000000008,"1696732621":76.460000000000008,"1696732638":76.460000000000008,"1696732653":76.460000000000008,"1696732670":76.460000000000008,"1696732686":76.460000000000008,"1696732702":76.6400000000000148,"1696732718":76.6400000000000148,"1696732734":76.460000000000008,"1696732750":76.460000000000008,"1696732766":76.6400000000000148,"1696732781":76.6400000000000148,"1696732798":76.4599999999999937,"1696732814":76.4599999999999937,"1696732830":76.4599999999999937,"1696732846":76.4599999999999937,"1696732862":76.4599999999999937,"1696732878":76.4599999999999937,"1696732886":60.2600000000000051,"1696732894":76.4599999999999937,"1696732910":76.6400000000000006,"1696732926":76.6400000000000006,"1696732942":76.6400000000000006,"1696732958":76.6400000000000006,"1696732974":76.6400000000000006,"1696732990":76.6400000000000006,"1696733006":76.6400000000000006,"1696733022":76.6400000000000006,"1696733038":76.6400000000000006,"1696733054":76.6400000000000006,"1696733070":76.6400000000000006,"1696733086":76.6400000000000006,"1696733102":76.6400000000000006,"1696733118":76.4599999999999937,"1696733134":76.4599999999999937,"1696733150":76.6400000000000006,"1696733166":76.6400000000000006,"1696733182":76.4599999999999937,"1696733198":76.4599999999999937,"1696733214":76.4599999999999937,"1696733230":76.4599999999999937,"1696733246":76.6400000000000006,"1696733262":76.6400000000000006,"1696733278":76.6400000000000006,"1696733294":76.6400000000000006,"1696733310":76.6400000000000006,"1696733326":76.6400000000000006,"1696733342":76.6400000000000006,"1696733358":76.6400000000000006,"1696733374":76.6400000000000006,"1696733390":76.6400000000000006,"1696733406":76.6400000000000006,"1696733422":76.6400000000000006,"1696733438":76.6400000000000006,"1696733454":76.6400000000000006,"1696733470":76.6400000000000006,"1696733486":76.6400000000000006,"1696733502":76.6400000000000006,"1696733518":76.6400000000000006,"1696733534":76.6400000000000006,"1696733550":76.6400000000000006,"1696733566":76.6400000000000006,"1696733582":76.6400000000000006,"1696733598":76.6400000000000006,"1696733614":76.6400000000000006,"1696733630":76.6400000000000006,"1696733646":76.6400000000000006,"1696733663":76.6400000000000006,"1696733679":76.6400000000000006,"1696733694":76.6400000000000006,"1696733710":76.6400000000000006,"1696733726":76.6400000000000006,"1696733743":76.6400000000000006,"1696733759":76.6400000000000006,"1696733774":76.6400000000000006,"1696733790":76.6400000000000006,"1696733807":76.6400000000000006,"1696733822":76.6400000000000006,"1696733838":76.6400000000000006,"1696733854":76.4599999999999937,"1696733870":76.4599999999999937,"1696733887":76.4599999999999937,"1696733903":76.4599999999999937,"1696733919":76.4599999999999937,"1696733934":76.6400000000000006,"1696733951":76.6400000000000006,"1696733966":76.4599999999999937,"1696733983":76.4599999999999937,"1696733999":76.6400000000000006,"1696734015":76.6400000000000006,"1696734031":76.6400000000000006,"1696734046":76.6400000000000006,"1696734063":76.6400000000000006,"1696734079":76.6400000000000006,"1696734095":76.6400000000000006,"1696734111":76.6400000000000006,"1696734127":76.6400000000000006,"1696734143":76.6400000000000006,"1696734158":76.6400000000000006,"1696734175":76.6400000000000006,"1696734191":76.6400000000000006,"1696734207":76.6400000000000006,"1696734223":76.6400000000000006,"1696734239":76.4599999999999937,"1696734255":76.4599999999999937,"1696734271":76.6400000000000006,"1696734287":76.6400000000000006,"1696734303":76.6400000000000006,"1696734319":76.6400000000000006,"1696734335":76.6400000000000006,"1696734351":76.6400000000000006,"1696734367":76.4599999999999937,"1696734383":76.6400000000000006,"1696734399":76.6400000000000006,"1696734415":76.6400000000000006,"1696734431":76.6400000000000006,"1696734447":76.6400000000000006,"1696734463":76.6400000000000006,"1696734479":76.6400000000000006,"1696734495":76.6400000000000006,"1696734511":76.6400000000000006,"1696734527":76.6400000000000006,"1696734543":76.6400000000000006,"1696734559":76.6400000000000006,"1696734575":76.6400000000000006,"1696734591":76.6400000000000006,"1696734607":76.6400000000000006,"1696734623":76.6400000000000006,"1696734639":76.6400000000000006,"1696734655":76.6400000000000006,"1696734671":76.6400000000000006,"1696734686":59.3600000000000065,"1696734687":76.6400000000000006,"1696734703":76.6400000000000006,"1696734719":76.6400000000000006,"1696734735":76.6400000000000006,"1696734751":76.4599999999999937,"1696734767":76.4599999999999937,"1696734783":76.4599999999999937,"1696734799":76.4599999999999937,"1696734815":76.6400000000000006,"1696734831":76.6400000000000006,"1696734847":76.6400000000000006,"1696734863":76.6400000000000006,"1696734879":76.6400000000000006,"1696734895":76.6400000000000006,"1696734911":76.6400000000000006,"1696734927":76.6400000000000006,"1696734943":76.6400000000000006,"1696734959":76.6400000000000006,"1696734975":76.6400000000000006,"1696734991":76.6400000000000006,"1696735007":76.6400000000000006,"1696735023":76.6400000000000006,"1696735039":76.6400000000000006,"1696735056":76.6400000000000006,"1696735071":76.6400000000000006,"1696735087":76.6400000000000006,"1696735104":76.6400000000000006,"1696735119":76.6400000000000006,"1696735135":76.6400000000000006,"1696735152":76.6400000000000006,"1696735167":76.4599999999999937,"1696735184":76.4599999999999937,"1696735199":76.6400000000000006,"1696735215":76.6400000000000006,"1696735231":76.6400000000000006,"1696735247":76.6400000000000006,"1696735263":76.4599999999999937,"1696735280":76.4599999999999937,"1696735295":76.6400000000000006,"1696735312":76.6400000000000006,"1696735327":76.6400000000000006,"1696735343":76.6400000000000006,"1696735359":76.6400000000000006,"1696735375":76.4599999999999937,"1696735392":76.4599999999999937,"1696735408":76.4599999999999937,"1696735424":76.4599999999999937,"1696735439":76.4599999999999937,"1696735456":76.4599999999999937,"1696735472":76.4599999999999937,"1696735488":76.4599999999999937,"1696735504":76.6400000000000006,"1696735520":76.6400000000000006,"1696735536":76.6400000000000006,"1696735552":76.6400000000000006,"1696735568":76.6400000000000006,"1696735584":76.6400000000000006,"1696735600":76.6400000000000006,"1696735616":76.6400000000000006,"1696735632":76.6400000000000006,"1696735648":76.6400000000000006,"1696735664":76.6400000000000006,"1696735680":76.4599999999999937,"1696735696":76.4599999999999937,"1696735712":76.4599999999999937,"1696735728":76.4599999999999937,"1696735744":76.4599999999999937,"1696735760":76.4599999999999937,"1696735776":76.4599999999999937,"1696735792":76.4599999999999937,"1696735808":76.4599999999999937,"1696735824":76.4599999999999937,"1696735840":76.4599999999999937,"1696735856":76.4599999999999937,"1696735872":76.4599999999999937,"1696735888":76.4599999999999937,"1696735904":76.4599999999999937,"1696735920":76.4599999999999937,"1696735936":76.4599999999999937,"1696735952":76.4599999999999937,"1696735968":76.4599999999999937,"1696735984":76.4599999999999937,"1696736000":76.4599999999999937,"1696736016":76.4599999999999937,"1696736032":76.4599999999999937,"1696736048":76.4599999999999937,"1696736064":76.4599999999999937,"1696736080":76.4599999999999937,"1696736096":76.4599999999999937,"1696736112":76.4599999999999937,"1696736128":76.4599999999999937,"1696736144":76.4599999999999937,"1696736160":76.4599999999999937,"1696736176":76.4599999999999937,"1696736192":76.4599999999999937,"1696736208":76.4599999999999937,"1696736224":76.4599999999999937,"1696736240":76.4599999999999937,"1696736256":76.4599999999999937,"1696736272":76.4599999999999937,"1696736288":76.4599999999999937,"1696736304":76.4599999999999937,"1696736320":76.4599999999999937,"1696736336":76.4599999999999937,"1696736352":76.4599999999999937,"1696736368":76.4599999999999937,"1696736384":76.4599999999999937,"1696736400":76.4599999999999937,"1696736416":76.4599999999999937,"1696736432":76.4599999999999937,"1696736448":76.4599999999999937,"1696736464":76.4599999999999937,"1696736480":76.4599999999999937,"1696736486":57.0200000000000102,"1696736496":76.4599999999999937,"1696736512":76.4599999999999937,"1696736528":76.4599999999999937,"1696736545":76.4599999999999937,"1696736560":76.4599999999999937,"1696736576":76.4599999999999937,"1696736592":76.4599999999999937,"1696736608":76.4599999999999937,"1696736624":76.4599999999999937,"1696736640":76.4599999999999937,"1696736656":76.4599999999999937,"1696736672":76.4599999999999937,"1696736689":76.4599999999999937,"1696736704":76.4599999999999937,"1696736720":76.4599999999999937,"1696736737":76.4599999999999937,"1696736753":76.4599999999999937,"1696736768":76.4599999999999937,"1696736785":76.4599999999999937,"1696736801":76.4599999999999937,"1696736817":76.4599999999999937,"1696736832":76.4599999999999937,"1696736848":76.4599999999999937,"1696736865":76.4599999999999937,"1696736881":76.4599999999999937,"1696736897":76.4599999999999937,"1696736913":76.4599999999999937,"1696736929":76.4599999999999937,"1696736945":76.4599999999999937,"1696736961":76.4599999999999937,"1696736977":76.4599999999999937,"1696736993":76.4599999999999937,"1696737009":76.4599999999999937,"1696737025":76.4599999999999937,"1696737041":76.4599999999999937,"1696737057":76.4599999999999937,"1696737073":76.4599999999999937,"1696737089":76.4599999999999937,"1696737105":76.4599999999999937,"1696737121":76.4599999999999937,"1696737137":76.4599999999999937,"1696737153":76.4599999999999937,"1696737169":76.4599999999999937,"1696737185":76.4599999999999937,"1696737201":76.4599999999999937,"1696737217":76.4599999999999937,"1696737233":76.4599999999999937,"1696737249":76.4599999999999937,"1696737265":76.4599999999999937,"1696737281":76.4599999999999937,"1696737297":76.4599999999999937,"1696737313":76.4599999999999937,"1696737329":76.4599999999999937,"1696737345":76.2799999999999869,"1696737361":76.2799999999999869,"1696737377":76.4599999999999937,"1696737393":76.4599999999999937,"1696737409":76.4599999999999937,"1696737425":76.4599999999999937,"1696737441":76.4599999999999937,"1696737457":76.4599999999999937,"1696737473":76.4599999999999937,"1696737489":76.4599999999999937,"1696737505":76.4599999999999937,"1696737521":76.4599999999999937,"1696737537":76.4599999999999937,"1696737553":76.4599999999999937,"1696737569":76.4599999999999937,"1696737585":76.4599999999999937,"1696737601":76.4599999999999937,"1696737617":76.4599999999999937,"1696737633":76.4599999999999937,"1696737649":76.4599999999999937,"1696737665":76.4599999999999937,"1696737681":76.4599999999999937,"1696737697":76.4599999999999937,"1696737713":76.4599999999999937,"1696737729":76.4599999999999937,"1696737745":76.4599999999999937,"1696737761":76.4599999999999937,"1696737777":76.4599999999999937,"1696737793":76.4599999999999937,"1696737809":76.4599999999999937,"1696737825":76.4599999999999937,"1696737841":76.4599999999999937,"1696737857":76.4599999999999937,"1696737873":76.4599999999999937,"1696737889":76.4599999999999937,"1696737906":76.4599999999999937,"1696737922":76.4599999999999937,"1696737937":76.4599999999999937,"1696737954":76.4599999999999937,"1696737969":76.4599999999999937,"1696737985":76.4599999999999937,"1696738002":76.4599999999999937,"1696738017":76.4599999999999937,"1696738033":76.4599999999999937,"1696738049":76.4599999999999937,"1696738066":76.4599999999999937,"1696738081":76.4599999999999937,"1696738098":76.4599999999999937,"1696738113":76.4599999999999937,"1696738130":76.4599999999999937,"1696738146":76.4599999999999937,"1696738161":76.4599999999999937,"1696738178":76.4599999999999937,"1696738193":76.4599999999999937,"1696738210":76.4599999999999937,"1696738226":76.4599999999999937,"1696738242":76.4599999999999937,"1696738258":76.4599999999999937,"1696738274":76.4599999999999937,"1696738286":56.4800000000000111,"1696738290":76.4599999999999937,"1696738306":76.4599999999999937,"1696738322":76.4599999999999937,"1696738338":76.4599999999999937,"1696738354":76.4599999999999937,"1696738370":76.4599999999999937,"1696738386":76.4599999999999937,"1696738402":76.4599999999999937,"1696738418":76.4599999999999937,"1696738434":76.4599999999999937,"1696738450":76.4599999999999937,"1696738466":76.4599999999999937,"1696738482":76.4599999999999937,"1696738498":76.4599999999999937,"1696738514":76.4599999999999937,"1696738530":76.4599999999999937,"1696738546":76.4599999999999937,"1696738562":76.4599999999999937,"1696738578":76.4599999999999937,"1696738594":76.4599999999999937,"1696738610":76.4599999999999937,"1696738626":76.4599999999999937,"1696738642":76.4599999999999937,"1696738658":76.4599999999999937,"1696738674":76.4599999999999937,"1696738690":76.4599999999999937,"1696738706":76.4599999999999937,"1696738722":76.4599999999999937,"1696738738":76.4599999999999937,"1696738754":76.4599999999999937,"1696738770":76.4599999999999937,"1696738786":76.4599999999999937,"1696738802":76.4599999999999937,"1696738818":76.4599999999999937,"1696738834":76.4599999999999937,"1696738850":76.4599999999999937,"1696738866":76.4599999999999937,"1696738882":76.4599999999999937,"1696738898":76.4599999999999937,"1696738914":76.4599999999999937,"1696738930":76.4599999999999937,"1696738946":76.4599999999999937,"1696738962":76.4599999999999937,"1696738978":76.4599999999999937,"1696738994":76.2799999999999869,"1696739010":76.2799999999999869,"1696739026":76.2799999999999869,"1696739042":76.2799999999999869,"1696739058":76.2799999999999869,"1696739074":76.2799999999999869,"1696739090":76.2799999999999869,"1696739106":76.2799999999999869,"1696739122":76.2799999999999869,"1696739138":76.2799999999999869,"1696739154":76.2799999999999869,"1696739170":76.2799999999999869,"1696739186":76.2799999999999869,"1696739202":76.2799999999999869,"1696739218":76.2799999999999869,"1696739234":76.2799999999999869,"1696739250":76.2799999999999869,"1696739266":76.4599999999999937,"1696739282":76.4599999999999937,"1696739298":76.4599999999999937,"1696739314":76.4599999999999937,"1696739330":76.4599999999999937,"1696739346":76.4599999999999937,"1696739363":76.4599999999999937,"1696739378":76.4599999999999937,"1696739395":76.4599999999999937,"1696739411":76.4599999999999937,"1696739427":76.4599999999999937,"1696739442":76.4599999999999937,"1696739459":76.4599999999999937,"1696739475":76.4599999999999937,"1696739490":76.4599999999999937,"1696739507":76.2799999999999869,"1696739522":76.2799999999999869,"1696739538":76.2799999999999869,"1696739555":76.2799999999999869,"1696739570":76.2799999999999869,"1696739586":76.2799999999999869,"1696739603":76.4599999999999937,"1696739619":76.4599999999999937,"1696739634":76.4599999999999937,"1696739651":76.4599999999999937,"1696739667":76.4599999999999937,"1696739683":76.2799999999999869,"1696739699":76.2799999999999869,"1696739715":76.2799999999999869,"1696739731":76.2799999999999869,"1696739747":76.2799999999999869,"1696739763":76.2799999999999869,"1696739779":76.2799999999999869,"1696739795":76.2799999999999869,"1696739811":76.2799999999999869,"1696739827":76.2799999999999869,"1696739843":76.4599999999999937,"1696739859":76.4599999999999937,"1696739875":76.2799999999999869,"1696739891":76.2799999999999869,"1696739907":76.2799999999999869,"1696739923":76.2799999999999869,"1696739939":76.2799999999999869,"1696739955":76.2799999999999869,"1696739971":76.2799999999999869,"1696739987":76.2799999999999869,"1696740003":76.2799999999999869,"1696740019":76.4599999999999937,"1696740035":76.4599999999999937,"1696740051":76.4599999999999937,"1696740067":76.4599999999999937,"1696740083":76.2799999999999869,"1696740086":55.5800000000000125,"1696740099":76.2799999999999869,"1696740115":76.4599999999999937,"1696740131":76.4599999999999937,"1696740147":76.2799999999999869,"1696740163":76.2799999999999869,"1696740179":76.2799999999999869,"1696740195":76.2799999999999869,"1696740211":76.2799999999999869,"1696740227":76.2799999999999869,"1696740243":76.2799999999999869,"1696740259":76.2799999999999869,"1696740275":76.2799999999999869,"1696740291":76.2799999999999869,"1696740307":76.2799999999999869,"1696740323":76.2799999999999869,"1696740339":76.2799999999999869,"1696740355":76.2799999999999869,"1696740371":76.2799999999999869,"1696740387":76.2799999999999869,"1696740403":76.2799999999999869,"1696740419":76.2799999999999869,"1696740435":76.2799999999999869,"1696740451":76.2799999999999869,"1696740467":76.2799999999999869,"1696740483":76.2799999999999869,"1696740499":76.2799999999999869,"1696740515":76.2799999999999869,"1696740531":76.2799999999999869,"1696740547":76.2799999999999869,"1696740563":76.2799999999999869,"1696740579":76.2799999999999869,"1696740595":76.2799999999999869,"1696740611":76.2799999999999869,"1696740627":76.2799999999999869,"1696740643":76.2799999999999869,"1696740660":76.2799999999999869,"1696740676":76.2799999999999869,"1696740691":76.2799999999999869,"1696740707":76.2799999999999869,"1696740723":76.2799999999999869,"1696740739":76.2799999999999869,"1696740755":76.2799999999999869,"1696740772":76.2799999999999869,"1696740787":76.2799999999999869,"1696740803":76.2799999999999869,"1696740819":76.2799999999999869,"1696740836":76.2799999999999869,"1696740852":76.2799999999999869,"1696740868":76.2799999999999869,"1696740883":76.2799999999999869,"1696740900":76.2799999999999869,"1696740915":76.2799999999999869,"1696740931":76.2799999999999869,"1696740948":76.2799999999999869,"1696740964":76.2800000000000011,"1696740979":76.2800000000000011,"1696740996":76.2800000000000011,"1696741011":76.2800000000000011,"1696741027":76.2800000000000011,"1696741044":76.2800000000000011,"1696741060":76.2800000000000011,"1696741076":76.2800000000000011,"1696741092":76.2800000000000011,"1696741108":76.2800000000000011,"1696741124":76.2800000000000011,"1696741140":76.2800000000000011,"1696741155":76.2800000000000011,"1696741172":76.2800000000000011,"1696741188":76.2800000000000011,"1696741204":76.2800000000000011,"1696741220":76.2800000000000011,"1696741236":76.2800000000000011,"1696741252":76.2800000000000011,"1696741268":76.2800000000000011,"1696741284":76.2800000000000011,"1696741300":76.2800000000000011,"1696741316":76.2800000000000011,"1696741332":76.2800000000000011,"1696741348":76.2800000000000011,"1696741364":76.2800000000000011,"1696741380":76.2800000000000011,"1696741396":76.2800000000000011,"1696741412":76.2800000000000011,"1696741428":76.2800000000000011,"1696741444":76.2800000000000011,"1696741460":76.2800000000000011,"1696741476":76.2800000000000011,"1696741492":76.2800000000000011,"1696741508":76.2800000000000011,"1696741524":76.0999999999999943,"1696741540":76.0999999999999943,"1696741556":76.2800000000000011,"1696741572":76.2800000000000011,"1696741588":76.2800000000000011,"1696741604":76.2800000000000011,"1696741620":76.2800000000000011,"1696741636":76.2800000000000011,"1696741652":76.2800000000000011,"1696741668":76.2800000000000011,"1696741684":76.2800000000000011,"1696741700":76.2800000000000011,"1696741716":76.2800000000000011,"1696741732":76.2800000000000011,"1696741748":76.2800000000000011,"1696741764":76.2800000000000011,"1696741780":76.2800000000000011,"1696741796":76.2800000000000011,"1696741812":76.2800000000000011,"1696741828":76.0999999999999943,"1696741844":76.0999999999999943,"1696741860":76.0999999999999943,"1696741876":76.0999999999999943,"1696741886":54.6800000000000139,"1696741892":76.2800000000000011,"1696741909":76.2800000000000011,"1696741924":76.2800000000000011,"1696741940":76.2800000000000011,"1696741956":76.2800000000000011,"1696741972":76.2800000000000011,"1696741988":76.2800000000000011,"1696742004":76.2800000000000011,"1696742020":76.2800000000000011,"1696742036":76.0999999999999943,"1696742052":76.0999999999999943,"1696742068":76.0999999999999943,"1696742085":76.0999999999999943,"1696742100":76.0999999999999943,"1696742117":76.0999999999999943,"1696742132":76.0999999999999943,"1696742149":76.0999999999999943,"1696742164":76.0999999999999943,"1696742180":76.0999999999999943,"1696742196":76.0999999999999943,"1696742213":76.0999999999999943,"1696742228":76.0999999999999943,"1696742244":76.0999999999999943,"1696742260":76.0999999999999943,"1696742277":76.0999999999999943,"1696742292":76.0999999999999943,"1696742308":76.2800000000000011,"1696742324":76.2800000000000011,"1696742340":76.2800000000000011,"1696742356":76.2800000000000011,"1696742372":76.2800000000000011,"1696742388":76.2800000000000011,"1696742405":76.2800000000000011,"1696742421":76.0999999999999943,"1696742437":76.0999999999999943,"1696742453":76.0999999999999943,"1696742468":76.0999999999999943,"1696742485":76.0999999999999943,"1696742501":76.0999999999999943,"1696742517":76.0999999999999943,"1696742533":76.0999999999999943,"1696742548":76.0999999999999943,"1696742565":76.0999999999999943,"1696742581":76.0999999999999943,"1696742597":76.0999999999999943,"1696742613":76.0999999999999943,"1696742629":76.0999999999999943,"1696742645":76.0999999999999943,"1696742661":76.0999999999999943,"1696742677":76.0999999999999943,"1696742693":76.0999999999999943,"1696742709":76.0999999999999943,"1696742725":76.0999999999999943,"1696742741":76.0999999999999943,"1696742757":76.0999999999999943,"1696742773":76.0999999999999943,"1696742789":76.0999999999999943,"1696742805":76.0999999999999943,"1696742821":76.0999999999999943,"1696742837":76.0999999999999943,"1696742853":76.0999999999999943,"1696742869":76.0999999999999943,"1696742885":76.0999999999999943,"1696742901":76.0999999999999943,"1696742917":76.0999999999999943,"1696742933":76.0999999999999943,"1696742949":76.0999999999999943,"1696742965":76.0999999999999943,"1696742981":76.0999999999999943,"1696742997":76.0999999999999943,"1696743013":76.0999999999999943,"1696743029":76.0999999999999943,"1696743045":76.0999999999999943,"1696743061":76.0999999999999943,"1696743077":76.0999999999999943,"1696743093":76.0999999999999943,"1696743109":76.0999999999999943,"1696743125":76.0999999999999943,"1696743141":76.0999999999999943,"1696743157":76.0999999999999943,"1696743173":76.0999999999999943,"1696743189":76.0999999999999943,"1696743205":76.0999999999999943,"1696743221":76.0999999999999943,"1696743237":76.0999999999999943,"1696743253":76.0999999999999943,"1696743269":76.0999999999999943,"1696743285":76.0999999999999943,"1696743301":76.0999999999999943,"1696743317":76.0999999999999943,"1696743333":76.0999999999999943,"1696743350":76.0999999999999943,"1696743365":76.0999999999999943,"1696743381":76.0999999999999943,"1696743397":76.0999999999999943,"1696743413":76.0999999999999943,"1696743429":76.0999999999999943,"1696743445":76.0999999999999943,"1696743461":76.0999999999999943,"1696743477":76.0999999999999943,"1696743493":76.0999999999999943,"1696743509":76.0999999999999943,"1696743525":76.0999999999999943,"1696743541":76.0999999999999943,"1696743557":76.0999999999999943,"1696743574":76.0999999999999943,"1696743589":76.0999999999999943,"1696743605":76.0999999999999943,"1696743621":76.0999999999999943,"1696743638":76.0999999999999943,"1696743654":76.0999999999999943,"1696743670":76.0999999999999943,"1696743685":76.0999999999999943,"1696743686":54.1400000000000148,"1696743702":76.0999999999999943,"1696743718":76.0999999999999943,"1696743734":76.0999999999999943,"1696743750":76.0999999999999943,"1696743766":76.0999999999999943,"1696743781":75.9199999999999875,"1696743798":75.9199999999999875,"1696743814":76.0999999999999943,"1696743830":76.0999999999999943,"1696743846":75.9199999999999875,"1696743861":75.9199999999999875,"1696743878":76.0999999999999943,"1696743894":76.0999999999999943,"1696743910":76.0999999999999943,"1696743926":76.0999999999999943,"1696743942":76.0999999999999943,"1696743958":76.0999999999999943,"1696743974":76.0999999999999943,"1696743990":76.0999999999999943,"1696744007":76.0999999999999943,"1696744022":76.0999999999999943,"1696744038":76.0999999999999943,"1696744054":76.0999999999999943,"1696744070":76.0999999999999943,"1696744086":76.0999999999999943,"1696744102":76.0999999999999943,"1696744118":76.0999999999999943,"1696744134":76.0999999999999943,"1696744150":76.0999999999999943,"1696744166":76.0999999999999943,"1696744182":76.0999999999999943,"1696744198":76.0999999999999943,"1696744214":76.0999999999999943,"1696744230":76.0999999999999943,"1696744246":76.0999999999999943,"1696744262":76.0999999999999943,"1696744278":76.0999999999999943,"1696744294":76.0999999999999943,"1696744310":76.0999999999999943,"1696744326":75.9199999999999875,"1696744342":75.9199999999999875,"1696744358":75.9199999999999875,"1696744374":75.9199999999999875,"1696744390":75.9199999999999875,"1696744406":75.9199999999999875,"1696744422":75.9199999999999875,"1696744438":75.9199999999999875,"1696744454":75.9199999999999875,"1696744470":75.9199999999999875,"1696744486":75.9199999999999875,"1696744502":75.9199999999999875,"1696744518":75.9199999999999875,"1696744534":76.0999999999999943,"1696744550":76.0999999999999943,"1696744566":75.9199999999999875,"1696744582":75.9199999999999875,"1696744598":75.9199999999999875,"1696744614":75.9199999999999875,"1696744630":75.9199999999999875,"1696744646":75.9199999999999875,"1696744662":75.9199999999999875,"1696744678":75.9199999999999875,"1696744694":75.9199999999999875,"1696744710":75.9199999999999875,"1696744726":75.9199999999999875,"1696744742":75.9199999999999875,"1696744758":75.9199999999999875,"1696744775":75.9199999999999875,"1696744790":75.9199999999999875,"1696744806":75.9199999999999875,"1696744822":75.9199999999999875,"1696744838":75.9199999999999875,"1696744854":75.9199999999999875,"1696744870":75.9199999999999875,"1696744886":75.9199999999999875,"1696744902":75.9199999999999875,"1696744918":75.9199999999999875,"1696744934":75.9199999999999875,"1696744954":75.9199999999999875,"1696744966":75.9199999999999875,"1696744982":75.9199999999999875,"1696744998":75.9199999999999875,"1696745014":75.9199999999999875,"1696745030":75.9199999999999875,"1696745046":75.9199999999999875,"1696745063":75.9199999999999875,"1696745078":75.9199999999999875,"1696745094":75.9200000000000017,"1696745111":75.7399999999999949,"1696745127":75.7399999999999949,"1696745143":75.9200000000000017,"1696745159":75.9200000000000017,"1696745174":75.9200000000000017,"1696745191":75.9200000000000017,"1696745207":75.9200000000000017,"1696745222":75.9200000000000017,"1696745239":75.9200000000000017,"1696745255":75.9200000000000017,"1696745271":75.9200000000000017,"1696745287":75.9200000000000017,"1696745303":75.9200000000000017,"1696745319":75.9200000000000017,"1696745335":75.9200000000000017,"1696745351":75.9200000000000017,"1696745367":75.9200000000000017,"1696745383":75.9200000000000017,"1696745399":75.9200000000000017,"1696745415":75.9200000000000017,"1696745431":75.9200000000000017,"1696745447":75.9200000000000017,"1696745463":76.1000000000000085,"1696745479":76.1000000000000085,"1696745486":53.6000000000000156,"1696745495":75.9200000000000017,"1696745511":75.9200000000000017,"1696745527":75.9200000000000017,"1696745543":75.9200000000000017,"1696745559":75.9200000000000017,"1696745575":75.9200000000000017,"1696745591":75.9200000000000017,"1696745607":75.9200000000000017,"1696745623":75.9200000000000017,"1696745639":75.9200000000000017,"1696745655":75.9200000000000017,"1696745671":75.9200000000000017,"1696745687":75.9200000000000017,"1696745703":75.9200000000000017,"1696745719":75.9200000000000017,"1696745735":75.9200000000000017,"1696745751":75.9200000000000017,"1696745767":75.9200000000000017,"1696745783":75.9200000000000017,"1696745799":75.9200000000000017,"1696745815":75.9200000000000017,"1696745831":75.7399999999999949,"1696745847":75.7399999999999949,"1696745863":75.7399999999999949,"1696745879":75.7399999999999949,"1696745895":75.7399999999999949,"1696745911":75.9200000000000017,"1696745927":75.9200000000000017,"1696745943":75.9200000000000017,"1696745959":75.9200000000000017,"1696745975":75.9200000000000017,"1696745991":75.9200000000000017,"1696746007":75.9200000000000017,"1696746023":75.9200000000000017,"1696746039":75.9200000000000017,"1696746055":75.9200000000000017,"1696746071":75.9200000000000017,"1696746087":75.9200000000000017,"1696746103":75.9200000000000017,"1696746119":75.9200000000000017,"1696746135":75.7399999999999949,"1696746151":75.7399999999999949,"1696746167":75.7399999999999949,"1696746183":75.7399999999999949,"1696746199":75.7399999999999949,"1696746215":75.7399999999999949,"1696746231":75.7399999999999949,"1696746247":75.7399999999999949,"1696746263":75.7399999999999949,"1696746279":75.7399999999999949,"1696746295":75.7399999999999949,"1696746311":75.7399999999999949,"1696746328":75.7399999999999949,"1696746343":75.7399999999999949,"1696746359":75.7399999999999949,"1696746375":75.7399999999999949,"1696746392":75.7399999999999949,"1696746407":75.7399999999999949,"1696746423":75.7399999999999949,"1696746439":75.7399999999999949,"1696746455":75.7399999999999949,"1696746471":75.7399999999999949,"1696746487":75.7399999999999949,"1696746504":75.7399999999999949,"1696746520":75.7399999999999949,"1696746536":75.7399999999999949,"1696746552":75.7399999999999949,"1696746568":75.7399999999999949,"1696746583":75.7399999999999949,"1696746600":75.7399999999999949,"1696746616":75.7399999999999949,"1696746632":75.7399999999999949,"1696746648":75.7399999999999949,"1696746664":75.7399999999999949,"1696746680":75.7399999999999949,"1696746696":75.7399999999999949,"1696746712":75.7399999999999949,"1696746728":75.7399999999999949,"1696746744":75.7399999999999949,"1696746760":75.7399999999999949,"1696746776":75.7399999999999949,"1696746792":75.7399999999999949,"1696746808":75.7399999999999949,"1696746824":75.7399999999999949,"1696746840":75.7399999999999949,"1696746856":75.7399999999999949,"1696746872":75.7399999999999949,"1696746888":75.7399999999999949,"1696746904":75.7399999999999949,"1696746920":75.7399999999999949,"1696746936":75.7399999999999949,"1696746952":75.7399999999999949,"1696746968":75.7399999999999949,"1696746984":75.7399999999999949,"1696747000":75.7399999999999949,"1696747016":75.7399999999999949,"1696747032":75.7399999999999949,"1696747048":75.7399999999999949,"1696747064":75.7399999999999949,"1696747080":75.7399999999999949,"1696747096":75.7399999999999949,"1696747112":75.7399999999999949,"1696747128":75.7399999999999949,"1696747144":75.7399999999999949,"1696747160":75.7399999999999949,"1696747176":75.7399999999999949,"1696747192":75.7399999999999949,"1696747208":75.7399999999999949,"1696747224":75.7399999999999949,"1696747240":75.7399999999999949,"1696747256":75.7399999999999949,"1696747272":75.7399999999999949,"1696747286":53.0600000000000165,"1696747288":75.7399999999999949,"1696747304":75.7399999999999949,"1696747320":75.7399999999999949,"1696747336":75.7399999999999949,"1696747352":75.7399999999999949,"1696747368":75.7399999999999949,"1696747384":75.7399999999999949,"1696747400":75.7399999999999949,"1696747416":75.7399999999999949,"1696747432":75.7399999999999949,"1696747448":75.7399999999999949,"1696747464":75.7399999999999949,"1696747480":75.7399999999999949,"1696747496":75.7399999999999949,"1696747512":75.7399999999999949,"1696747528":75.7399999999999949,"1696747544":75.7399999999999949,"1696747560":75.7399999999999949,"1696747576":75.7399999999999949,"1696747592":75.7399999999999949,"1696747608":75.7399999999999949,"1696747624":75.7399999999999949,"1696747640":75.7399999999999949,"1696747656":75.7399999999999949,"1696747672":75.7399999999999949,"1696747688":75.7399999999999949,"1696747705":75.7399999999999949,"1696747720":75.7399999999999949,"1696747736":75.7399999999999949,"1696747752":75.7399999999999949,"1696747768":75.7399999999999949,"1696747784":75.7400000000000091,"1696747801":75.7400000000000091,"1696747817":75.7400000000000091,"1696747832":75.7400000000000091,"1696747848":75.7400000000000091,"1696747864":75.7400000000000091,"1696747881":75.7400000000000091,"1696747897":75.7400000000000091,"1696747913":75.5600000000000023,"1696747929":75.7400000000000091,"1696747945":75.7400000000000091,"1696747960":75.7400000000000091,"1696747977":75.7400000000000091,"1696747993":75.7400000000000091,"1696748008":75.7400000000000091,"1696748025":75.7400000000000091,"1696748041":75.7400000000000091,"1696748057":75.7400000000000091,"1696748072":75.7400000000000091,"1696748089":75.7400000000000091,"1696748105":75.7400000000000091,"1696748121":75.5600000000000023,"1696748137":75.5600000000000023,"1696748153":75.5600000000000023,"1696748169":75.5600000000000023,"1696748185":75.5600000000000023,"1696748201":75.5600000000000023,"1696748217":75.5600000000000023,"1696748233":75.7400000000000091,"1696748249":75.7400000000000091,"1696748457":75.7400000000000091,"1696748473":75.9200000000000159,"1696748489":75.9200000000000159,"1696748505":75.9200000000000159,"1696748521":75.9200000000000159,"1696748569":75.9200000000000159,"1696748585":75.9200000000000159,"1696748601":75.7400000000000091,"1696748617":75.7400000000000091,"1696748633":75.9200000000000159,"1696748649":75.9200000000000159,"1696748665":75.9200000000000159,"1696748681":75.9200000000000159,"1696748697":75.9200000000000159,"1696748713":76.1000000000000227,"1696748729":76.1000000000000227,"1696748745":76.1000000000000227,"1696748761":76.1000000000000227,"1696748777":76.2800000000000296,"1696748793":76.2800000000000296,"1696748809":76.2800000000000296,"1696748825":76.2800000000000296,"1696748841":76.4600000000000364,"1696748857":76.4600000000000364,"1696748873":76.2800000000000296,"1696748889":76.2800000000000296,"1696748905":76.2800000000000296,"1696748921":76.2800000000000296,"1696748937":76.2800000000000296,"1696748953":76.2800000000000296,"1696748970":76.2800000000000296,"1696748985":76.2800000000000296,"1696749001":76.2800000000000296,"1696749017":76.2800000000000296,"1696749033":76.2800000000000296,"1696749049":76.2800000000000296,"1696749065":76.2800000000000296,"1696749081":76.2800000000000296,"1696749097":76.2800000000000296,"1696749113":76.2800000000000296,"1696749130":76.2800000000000296,"1696749145":76.1000000000000227,"1696749161":76.1000000000000227,"1696749177":76.1000000000000227,"1696749194":76.1000000000000227,"1696749210":76.1000000000000227,"1696749225":76.1000000000000227,"1696749242":76.1000000000000227,"1696749257":76.1000000000000227,"1696749274":76.1000000000000227,"1696749290":76.2800000000000296,"1696749306":76.2800000000000296,"1696749321":76.2800000000000296,"1696749338":76.2800000000000011,"1696749354":76.460000000000008,"1696749370":76.460000000000008,"1696749386":76.6400000000000148,"1696749402":76.6400000000000148,"1696749418":76.460000000000008,"1696749433":76.460000000000008,"1696749450":76.460000000000008,"1696749466":76.460000000000008,"1696749482":76.460000000000008,"1696749498":76.460000000000008,"1696749514":76.460000000000008,"1696749530":76.460000000000008,"1696749546":76.460000000000008,"1696749562":76.460000000000008,"1696749578":76.460000000000008,"1696749594":76.460000000000008,"1696749610":76.460000000000008,"1696749626":76.460000000000008,"1696749642":76.460000000000008,"1696749658":76.6400000000000148,"1696749674":76.6400000000000148,"1696749690":76.6400000000000148,"1696749706":76.460000000000008,"1696749722":76.460000000000008,"1696749738":76.6400000000000148,"1696749754":76.6400000000000148,"1696749770":76.6400000000000148,"1696749786":76.6400000000000148,"1696749802":76.6400000000000148,"1696749818":76.6400000000000148,"1696749834":76.460000000000008,"1696749843":52.1600000000000179,"1696749850":76.460000000000008,"1696749866":76.6400000000000148,"1696749882":76.6400000000000148,"1696749898":76.460000000000008,"1696749914":76.460000000000008,"1696749930":76.460000000000008,"1696749946":76.2800000000000011,"1696749962":76.2800000000000011,"1696749978":76.2800000000000011,"1696749994":76.2800000000000011,"1696750010":76.0999999999999943,"1696750026":76.0999999999999943,"1696750042":76.0999999999999943,"1696750058":76.0999999999999943,"1696750074":76.0999999999999943,"1696750090":76.0999999999999943,"1696750106":76.2800000000000011,"1696750122":76.2800000000000011,"1696750138":76.2800000000000011,"1696750154":76.2800000000000011,"1696750170":76.2800000000000011,"1696750186":76.460000000000008,"1696750202":76.460000000000008,"1696750218":76.460000000000008,"1696750234":76.460000000000008,"1696750250":76.460000000000008,"1696750266":76.460000000000008,"1696750282":76.460000000000008,"1696750298":76.460000000000008,"1696750314":76.2800000000000011,"1696750330":76.2800000000000011,"1696750346":76.2800000000000011,"1696750362":76.2800000000000011,"1696750378":76.2800000000000011,"1696750394":76.2800000000000011,"1696750410":76.2800000000000011,"1696750426":76.460000000000008,"1696750442":76.460000000000008,"1696750458":76.460000000000008,"1696750474":76.460000000000008,"1696750490":76.460000000000008,"1696750507":76.460000000000008,"1696750522":76.6400000000000148,"1696750538":76.6400000000000148,"1696750554":76.8200000000000216,"1696750570":76.8200000000000216,"1696750586":77.0000000000000284,"1696750602":77.0000000000000284,"1696750619":76.640000000000029,"1696750634":76.640000000000029,"1696750650":76.640000000000029,"1696750666":76.640000000000029,"1696750682":76.640000000000029,"1696750698":76.4600000000000222,"1696750714":76.4600000000000222,"1696750730":76.4600000000000222,"1696750747":76.4600000000000222,"1696750762":76.4600000000000222,"1696750779":76.4600000000000222,"1696750795":76.2800000000000153,"1696750811":76.2800000000000153,"1696750827":76.2800000000000153,"1696750842":76.2800000000000153,"1696750858":76.4600000000000222,"1696750875":76.4599999999999937,"1696750891":76.4599999999999937,"1696750907":76.4599999999999937,"1696750923":76.4599999999999937,"1696750939":76.4599999999999937,"1696750955":76.4599999999999937,"1696750971":76.6400000000000006,"1696750987":76.6400000000000006,"1696751003":76.6400000000000006,"1696751019":76.6400000000000006,"1696751035":76.8200000000000074,"1696751051":76.8200000000000074,"1696751067":76.6400000000000006,"1696751083":76.6400000000000006,"1696751099":76.6400000000000006,"1696751115":76.6400000000000006,"1696751131":76.6400000000000006,"1696751147":76.6400000000000006,"1696751163":76.6400000000000006,"1696751179":77.0,"1696751195":77.0,"1696751211":76.8199999999999932,"1696751227":76.8199999999999932,"1696751243":76.8199999999999932,"1696751259":76.8199999999999932,"1696751275":76.8199999999999932,"1696751291":76.8199999999999932,"1696751307":76.8199999999999932,"1696751323":76.8199999999999932,"1696751339":76.8199999999999932,"1696751355":76.8199999999999932,"1696751371":77.0,"1696751387":77.0,"1696751403":77.0,"1696751419":77.0,"1696751435":77.0,"1696751451":77.1800000000000068,"1696751467":77.1800000000000068,"1696751483":77.1800000000000068,"1696751499":77.1800000000000068,"1696751515":77.0,"1696751531":77.0,"1696751547":77.1800000000000068,"1696751563":77.1800000000000068,"1696751579":77.1800000000000068,"1696751595":77.1800000000000068,"1696751611":77.1800000000000068,"1696751627":77.1800000000000068,"1696751643":77.0,"1696751659":77.0,"1696751675":77.1800000000000068,"1696751691":77.5400000000000063,"1696751707":77.5400000000000063,"1696751723":77.3599999999999994,"1696751739":77.3599999999999994,"1696751755":77.1799999999999926,"1696751771":77.1799999999999926,"1696751787":77.1799999999999926,"1696751803":77.1799999999999926,"1696751819":77.1799999999999926,"1696751835":77.1799999999999926,"1696751851":77.3599999999999994,"1696751867":77.3599999999999994,"1696751883":77.1799999999999926,"1696751900":77.1799999999999926,"1696751915":77.1799999999999926,"1696751931":76.9999999999999858,"1696751947":76.9999999999999858,"1696751964":76.819999999999979,"1696751979":76.819999999999979,"1696751995":76.6399999999999721,"1696752011":76.6399999999999721,"1696752028":76.6399999999999721,"1696752044":76.6399999999999721,"1696752060":76.4599999999999653,"1696752075":76.4599999999999653,"1696752092":76.4599999999999653,"1696752107":76.4599999999999653,"1696752123":76.4599999999999653,"1696752140":76.4599999999999653,"1696752236":76.2799999999999585,"1696752252":76.2799999999999585,"1696752268":76.0999999999999517,"1696752284":76.0999999999999517,"1696752300":76.0999999999999517,"1696752316":76.0999999999999517,"1696752332":76.2799999999999585,"1696752348":76.2799999999999585,"1696752364":76.2800000000000011,"1696752380":76.2800000000000011,"1696752396":76.2800000000000011,"1696752412":76.2800000000000011,"1696752428":76.460000000000008,"1696752444":76.460000000000008,"1696752460":76.460000000000008,"1696752476":76.460000000000008,"1696752492":76.460000000000008,"1696752508":76.6400000000000148,"1696752524":76.6400000000000148,"1696752540":76.460000000000008,"1696752556":76.460000000000008,"1696752572":76.460000000000008,"1696752588":76.460000000000008,"1696752604":76.8200000000000074,"1696752620":76.8200000000000074,"1696752636":76.8200000000000074,"1696752652":76.8200000000000074,"1696752668":76.8200000000000074,"1696752684":77.0000000000000142,"1696752700":77.0000000000000142,"1696752716":77.0000000000000142,"1696752732":77.0000000000000142,"1696752748":77.0000000000000142,"1696752764":77.0000000000000142,"1696752780":77.0000000000000142,"1696752796":77.0000000000000142,"1696752812":77.0000000000000142,"1696752828":77.0000000000000142,"1696752844":77.0000000000000142,"1696752860":77.0000000000000142,"1696752876":77.0000000000000142,"1696752892":77.0000000000000142,"1696752908":77.180000000000021,"1696752924":77.180000000000021,"1696752940":77.180000000000021,"1696752956":77.180000000000021,"1696752972":77.180000000000021,"1696752988":77.3600000000000279,"1696753004":77.3600000000000279,"1696753020":77.5400000000000347,"1696753036":77.5400000000000347,"1696753052":64.2200000000000273,"1696753068":77.5400000000000347,"1696753084":77.3600000000000279,"1696753100":77.3600000000000279,"1696753116":77.3600000000000279,"1696753132":77.3600000000000279,"1696753148":77.3600000000000279,"1696753164":77.3600000000000279,"1696753180":77.3600000000000279,"1696753196":77.5400000000000347,"1696753212":77.5400000000000347,"1696753228":77.5400000000000347,"1696753244":77.5400000000000347,"1696753260":77.3600000000000279,"1696753276":77.3600000000000279,"1696753292":77.5400000000000347,"1696753308":77.5400000000000347,"1696753324":77.5400000000000347,"1696753340":77.5400000000000347,"1696753356":77.3600000000000279,"1696753372":77.3600000000000279,"1696753388":77.3600000000000279,"1696753405":77.3600000000000279,"1696753420":77.3600000000000279,"1696753437":77.180000000000021,"1696753452":77.180000000000021,"1696753469":77.180000000000021,"1696753485":77.180000000000021,"1696753501":77.180000000000021,"1696753517":77.180000000000021,"1696753533":77.180000000000021,"1696753548":77.180000000000021,"1696753565":77.0000000000000142,"1696753581":77.0000000000000142,"1696753597":77.0000000000000142,"1696753613":77.0000000000000142,"1696753628":77.0000000000000142,"1696753645":77.0000000000000142,"1696753661":77.0000000000000142,"1696753677":77.0000000000000142,"1696753693":77.0000000000000142,"1696753709":77.0000000000000142,"1696753725":77.0000000000000142,"1696753741":77.0000000000000142,"1696753757":77.0000000000000142,"1696753773":77.0000000000000142,"1696753789":77.0000000000000142,"1696753805":77.0000000000000142,"1696753821":77.0000000000000142,"1696753837":76.8200000000000074,"1696753853":76.8200000000000074,"1696753869":76.8200000000000074,"1696753885":76.8200000000000074,"1696753901":76.8200000000000074,"1696753917":76.8200000000000074,"1696753933":76.6400000000000006,"1696753949":76.6400000000000006,"1696753965":76.6400000000000006,"1696753981":76.6400000000000006,"1696753997":76.6400000000000006,"1696754013":76.4599999999999937,"1696754029":76.4599999999999937,"1696754045":76.6400000000000006,"1696754061":76.6400000000000006,"1696754077":76.6400000000000006,"1696754093":76.6400000000000006,"1696754109":76.6400000000000006,"1696754125":76.6400000000000006,"1696754141":76.6400000000000006,"1696754157":76.6400000000000006,"1696754173":76.4599999999999937,"1696754189":76.4599999999999937,"1696754205":76.4599999999999937,"1696754221":76.4599999999999937,"1696754237":76.4599999999999937,"1696754253":76.4599999999999937,"1696754269":76.4599999999999937,"1696754286":76.4599999999999937,"1696754301":76.4599999999999937,"1696754317":76.4599999999999937,"1696754333":76.4599999999999937,"1696754349":76.6400000000000006,"1696754365":76.6400000000000006,"1696754381":76.6400000000000006,"1696754397":76.6400000000000006,"1696754413":76.4599999999999937,"1696754429":76.4599999999999937,"1696754445":76.4599999999999937,"1696754461":76.4599999999999937,"1696754477":76.4599999999999937,"1696754493":76.4599999999999937,"1696754509":76.4599999999999937,"1696754526":76.2799999999999869,"1696754541":76.2799999999999869,"1696754557":76.4599999999999937,"1696754573":76.4599999999999937,"1696754589":76.4599999999999937,"1696754605":76.4599999999999937,"1696754622":76.4599999999999937,"1696754637":76.4599999999999937,"1696754653":76.6400000000000006,"1696754669":76.6400000000000006,"1696754685":76.6400000000000006,"1696754701":76.6400000000000006,"1696754718":76.6400000000000006,"1696754734":76.6400000000000006,"1696754750":76.6400000000000006,"1696754765":76.6400000000000006,"1696754781":76.6400000000000006,"1696754798":76.6400000000000006,"1696754813":76.6400000000000006,"1696754829":76.4599999999999937,"1696754845":76.4599999999999937,"1696754852":50.3600000000000207,"1696754862":76.4599999999999937,"1696754877":76.4599999999999937,"1696754894":76.4599999999999937,"1696754910":76.4599999999999937,"1696754925":76.6400000000000006,"1696754942":76.6400000000000006,"1696754958":76.6400000000000006,"1696754973":76.6400000000000006,"1696754990":76.6400000000000006,"1696755005":76.6400000000000006,"1696755022":76.6400000000000006,"1696755038":76.6400000000000006,"1696755054":76.6400000000000006,"1696755070":76.6400000000000006,"1696755086":76.6400000000000006,"1696755102":76.6400000000000006,"1696755118":76.6400000000000006,"1696755134":76.6400000000000006,"1696755150":76.6400000000000006,"1696755166":76.6400000000000006,"1696755182":76.6400000000000006,"1696755198":76.6400000000000006,"1696755214":76.4599999999999937,"1696755230":76.4599999999999937,"1696755246":76.4599999999999937,"1696755262":76.4599999999999937,"1696755278":76.4599999999999937,"1696755294":76.4599999999999937,"1696755310":76.6400000000000006,"1696755326":76.6400000000000006,"1696755342":76.6400000000000006,"1696755358":76.6400000000000006,"1696755374":76.8200000000000074,"1696755390":76.8200000000000074,"1696755406":77.0000000000000142,"1696755422":77.0000000000000142,"1696755438":77.0000000000000142,"1696755454":77.0000000000000142,"1696755470":77.0000000000000142,"1696755486":77.0000000000000142,"1696755502":77.0000000000000142,"1696755518":77.0000000000000142,"1696755534":77.0000000000000142,"1696755550":76.8200000000000074,"1696755566":76.8200000000000074,"1696755582":77.0000000000000142,"1696755598":77.0000000000000142,"1696755614":76.8200000000000074,"1696755630":76.8200000000000074,"1696755646":76.8200000000000074,"1696755662":76.8200000000000074,"1696755678":77.0000000000000142,"1696755694":76.8200000000000074,"1696755710":76.8200000000000074,"1696755726":76.8200000000000074,"1696755742":76.8200000000000074,"1696755762":76.8199999999999932,"1696755774":76.8199999999999932,"1696755790":76.8199999999999932,"1696755806":76.8199999999999932,"1696755822":77.0,"1696755838":77.0,"1696755854":76.6400000000000006,"1696755870":76.6400000000000006,"1696755886":76.6400000000000006,"1696755902":76.6400000000000006,"1696755919":76.6400000000000006,"1696755935":76.6400000000000006,"1696755950":76.6400000000000006,"1696755966":76.8200000000000074,"1696755982":76.8200000000000074,"1696755998":76.6400000000000006,"1696756014":76.6400000000000006,"1696756030":76.6400000000000006,"1696756046":76.6400000000000006,"1696756063":76.6400000000000006,"1696756078":76.6400000000000006,"1696756094":76.6400000000000006,"1696756110":76.6400000000000006,"1696756127":76.6400000000000006,"1696756142":76.6400000000000006,"1696756158":76.6400000000000006,"1696756175":76.6400000000000006,"1696756191":76.8200000000000074,"1696756207":76.8200000000000074,"1696756222":76.8200000000000074,"1696756239":76.8200000000000074,"1696756254":76.8200000000000074,"1696756271":76.8200000000000074,"1696756287":76.8200000000000074,"1696756303":76.6400000000000006,"1696756319":76.6400000000000006,"1696756334":76.6400000000000006,"1696756351":76.6400000000000006,"1696756366":76.6400000000000006,"1696756383":76.6400000000000006,"1696756399":76.6400000000000006,"1696756415":76.6400000000000006,"1696756431":76.6400000000000006,"1696756447":76.4599999999999937,"1696756463":76.4599999999999937,"1696756479":76.4599999999999937,"1696756495":76.4599999999999937,"1696756511":76.4599999999999937,"1696756527":76.4599999999999937,"1696756543":76.4599999999999937,"1696756559":76.4599999999999937,"1696756575":76.2799999999999869,"1696756591":76.2799999999999869,"1696756607":76.4599999999999937,"1696756623":76.4599999999999937,"1696756639":76.4599999999999937,"1696756652":50.0000000000000213,"1696756655":76.4599999999999937,"1696756671":76.4599999999999937,"1696756687":76.4599999999999937,"1696756703":76.4599999999999937,"1696756719":76.4599999999999937,"1696756735":76.4599999999999937,"1696756751":76.4599999999999937,"1696756767":76.4599999999999937,"1696756783":76.2799999999999869,"1696756799":76.2799999999999869,"1696756815":76.2799999999999869,"1696756831":76.2799999999999869,"1696756847":76.4599999999999937,"1696756863":76.4599999999999937,"1696756879":76.2799999999999869,"1696756895":76.2799999999999869,"1696756911":76.4599999999999937,"1696756927":76.4599999999999937,"1696756943":76.4599999999999937,"1696756959":76.4599999999999937,"1696756975":76.4599999999999937,"1696756991":76.4599999999999937,"1696757007":76.4599999999999937,"1696757023":76.4599999999999937,"1696757039":76.4599999999999937,"1696757055":76.4599999999999937,"1696757071":76.4599999999999937,"1696757087":76.4599999999999937,"1696757103":76.4599999999999937,"1696757119":76.4599999999999937,"1696757135":76.4599999999999937,"1696757151":76.4599999999999937,"1696757167":76.4599999999999937,"1696757183":76.4599999999999937,"1696757199":76.2799999999999869,"1696757215":76.2799999999999869,"1696757231":76.2799999999999869,"1696757247":76.2799999999999869,"1696757263":76.2799999999999869,"1696757279":76.2799999999999869,"1696757295":76.2799999999999869,"1696757311":76.2799999999999869,"1696757327":76.0999999999999801,"1696757343":76.0999999999999801,"1696757359":76.0999999999999801,"1696757376":76.0999999999999801,"1696757391":76.0999999999999943,"1696757407":76.0999999999999943,"1696757424":76.0999999999999943,"1696757440":76.0999999999999943,"1696757455":76.0999999999999943,"1696757471":76.0999999999999943,"1696757487":76.0999999999999943,"1696757503":76.0999999999999943,"1696757520":76.0999999999999943,"1696757535":76.0999999999999943,"1696757552":76.0999999999999943,"1696757567":76.0999999999999943,"1696757583":76.0999999999999943,"1696757599":76.0999999999999943,"1696757616":76.0999999999999943,"1696757632":76.0999999999999943,"1696757648":76.0999999999999943,"1696757664":76.0999999999999943,"1696757680":76.0999999999999943,"1696757695":75.9199999999999875,"1696757712":76.0999999999999943,"1696757728":76.0999999999999943,"1696757744":75.9199999999999875,"1696757760":75.9199999999999875,"1696757776":76.0999999999999943,"1696757791":76.0999999999999943,"1696757808":76.0999999999999943,"1696757824":76.0999999999999943,"1696757840":76.0999999999999943,"1696757856":76.0999999999999943,"1696757872":76.0999999999999943,"1696757888":76.0999999999999943,"1696757904":76.0999999999999943,"1696757920":76.0999999999999943,"1696757936":76.0999999999999943,"1696757952":75.7399999999999949,"1696757968":75.7399999999999949,"1696757984":75.7399999999999949,"1696758000":75.7399999999999949,"1696758016":75.7399999999999949,"1696758032":75.7399999999999949,"1696758048":75.7399999999999949,"1696758064":75.7399999999999949,"1696758080":75.9200000000000017,"1696758096":75.9200000000000017,"1696758112":75.7399999999999949,"1696758128":75.7399999999999949,"1696758144":75.7399999999999949,"1696758160":75.7399999999999949,"1696758176":75.7399999999999949,"1696758192":75.7399999999999949,"1696758208":75.7399999999999949,"1696758224":75.7399999999999949,"1696758240":75.7399999999999949,"1696758256":75.5599999999999881,"1696758272":75.5599999999999881,"1696758288":75.5599999999999881,"1696758304":75.5599999999999881,"1696758320":75.7399999999999949,"1696758336":75.7399999999999949,"1696758352":75.7399999999999949,"1696758368":75.7399999999999949,"1696758384":75.7399999999999949,"1696758400":75.7399999999999949,"1696758416":75.5599999999999881,"1696758432":75.5599999999999881,"1696758448":75.5599999999999881,"1696758452":49.4600000000000222,"1696758464":75.3799999999999812,"1696758480":75.3799999999999812,"1696758496":75.3799999999999812,"1696758512":75.3799999999999812,"1696758528":75.3799999999999812,"1696758544":75.3799999999999812,"1696758560":75.3799999999999812,"1696758576":75.3799999999999812,"1696758592":75.3799999999999812,"1696758608":75.3799999999999812,"1696758624":75.3799999999999812,"1696758640":75.3799999999999812,"1696758656":75.3799999999999812,"1696758672":75.3799999999999812,"1696758688":75.3799999999999812,"1696758704":75.3799999999999812,"1696758720":75.3799999999999812,"1696758736":75.3799999999999812,"1696758752":75.3799999999999812,"1696758768":75.3799999999999812,"1696758784":75.3799999999999812,"1696758800":75.5599999999999881,"1696758816":75.5599999999999881,"1696758832":75.5599999999999881,"1696758848":75.5599999999999881,"1696758864":75.3799999999999812,"1696758880":75.3799999999999812,"1696758896":75.3799999999999812,"1696758912":75.3799999999999812,"1696758928":75.3799999999999812,"1696758944":75.3799999999999812,"1696758960":75.5599999999999881,"1696758977":75.5599999999999881,"1696758992":75.5599999999999881,"1696759008":75.3799999999999812,"1696759024":75.3799999999999812,"1696759040":75.5599999999999881,"1696759056":75.5599999999999881,"1696759072":75.3799999999999812,"1696759088":75.3799999999999812,"1696759105":75.3799999999999955,"1696759120":75.3799999999999955,"1696759136":75.1999999999999886,"1696759153":75.1999999999999886,"1696759169":75.3799999999999955,"1696759185":75.3799999999999955,"1696759201":75.3799999999999955,"1696759217":75.1999999999999886,"1696759233":75.1999999999999886,"1696759249":75.3799999999999955,"1696759265":75.3799999999999955,"1696759281":75.3799999999999955,"1696759297":75.3799999999999955,"1696759313":75.3799999999999955,"1696759329":75.3799999999999955,"1696759345":75.3799999999999955,"1696759361":75.3799999999999955,"1696759377":75.1999999999999886,"1696759393":75.1999999999999886,"1696759409":75.1999999999999886,"1696759425":75.1999999999999886,"1696759441":75.1999999999999886,"1696759457":75.1999999999999886,"1696759473":75.1999999999999886,"1696759489":75.1999999999999886,"1696759505":75.1999999999999886,"1696759521":75.1999999999999886,"1696759537":75.1999999999999886,"1696759553":75.1999999999999886,"1696759569":75.1999999999999886,"1696759585":75.1999999999999886,"1696759601":75.1999999999999886,"1696759617":75.1999999999999886,"1696759633":75.1999999999999886,"1696759649":75.1999999999999886,"1696759665":75.1999999999999886,"1696759681":75.1999999999999886,"1696759697":75.1999999999999886,"1696759713":75.1999999999999886,"1696759729":75.1999999999999886,"1696759745":75.1999999999999886,"1696759761":75.1999999999999886,"1696759777":75.1999999999999886,"1696759793":75.1999999999999886,"1696759809":75.1999999999999886,"1696759825":75.1999999999999886,"1696759841":75.1999999999999886,"1696759857":75.1999999999999886,"1696759873":75.1999999999999886,"1696759889":75.1999999999999886,"1696759905":75.1999999999999886,"1696759921":75.0199999999999818,"1696759937":75.0199999999999818,"1696759953":75.0199999999999818,"1696759969":74.839999999999975,"1696759985":74.839999999999975,"1696760001":74.839999999999975,"1696760017":74.839999999999975,"1696760033":74.839999999999975,"1696760049":74.839999999999975,"1696760065":74.839999999999975,"1696760081":74.839999999999975,"1696760097":75.0199999999999818,"1696760113":75.0199999999999818,"1696760129":74.839999999999975,"1696760145":74.839999999999975,"1696760161":74.839999999999975,"1696760178":74.839999999999975,"1696760193":74.839999999999975,"1696760209":74.839999999999975,"1696760225":74.839999999999975,"1696760241":74.839999999999975,"1696760252":49.2800000000000225,"1696760257":74.839999999999975,"1696760273":74.839999999999975,"1696760290":74.839999999999975,"1696760305":74.6599999999999682,"1696760321":74.6599999999999682,"1696760338":74.6599999999999682,"1696760353":74.6599999999999682,"1696760369":74.839999999999975,"1696760386":74.839999999999975,"1696760401":74.839999999999975,"1696760417":74.839999999999975,"1696760434":74.839999999999975,"1696760449":74.839999999999975,"1696760466":74.839999999999975,"1696760481":74.839999999999975,"1696760498":74.839999999999975,"1696760514":74.6599999999999682,"1696760529":74.6599999999999682,"1696760545":74.6599999999999682,"1696760562":74.6599999999999682,"1696760577":74.6599999999999682,"1696760594":74.6599999999999682,"1696760610":74.839999999999975,"1696760625":74.839999999999975,"1696760642":74.6599999999999966,"1696760658":74.6599999999999966,"1696760674":74.6599999999999966,"1696760690":74.6599999999999966,"1696760706":74.6599999999999966,"1696760722":74.6599999999999966,"1696760738":74.6599999999999966,"1696760754":74.6599999999999966,"1696760770":74.6599999999999966,"1696760786":74.8400000000000034,"1696760802":74.8400000000000034,"1696760818":74.8400000000000034,"1696760834":74.8400000000000034,"1696760850":74.6599999999999966,"1696760866":74.6599999999999966,"1696760882":74.6599999999999966,"1696760898":74.6599999999999966,"1696760914":74.6599999999999966,"1696760930":74.6599999999999966,"1696760946":74.6599999999999966,"1696760962":74.6599999999999966,"1696760978":74.6599999999999966,"1696760994":74.6599999999999966,"1696761010":74.6599999999999966,"1696761026":74.4799999999999898,"1696761042":74.4799999999999898,"1696761058":74.6599999999999966,"1696761074":74.6599999999999966,"1696761090":74.8400000000000034,"1696761106":74.8400000000000034,"1696761122":74.6599999999999966,"1696761138":74.6599999999999966,"1696761154":74.4799999999999898,"1696761170":74.4799999999999898,"1696761186":74.6599999999999966,"1696761202":74.6599999999999966,"1696761218":74.6599999999999966,"1696761234":74.6599999999999966,"1696761250":74.6599999999999966,"1696761266":74.6599999999999966,"1696761282":74.6599999999999966,"1696761298":74.4799999999999898,"1696761314":74.4799999999999898,"1696761330":74.6599999999999966,"1696761346":74.6599999999999966,"1696761362":74.6599999999999966,"1696761378":74.6599999999999966,"1696761394":74.6599999999999966,"1696761410":74.6599999999999966,"1696761426":74.4799999999999898,"1696761442":74.4799999999999898,"1696761458":74.6599999999999966,"1696761474":74.6599999999999966,"1696761490":74.6599999999999966,"1696761506":74.4799999999999898,"1696761522":74.4799999999999898,"1696761538":74.4799999999999898,"1696761554":74.4799999999999898,"1696761570":74.2999999999999829,"1696761586":74.2999999999999829,"1696761602":74.2999999999999829,"1696761618":74.2999999999999829,"1696761634":74.2999999999999829,"1696761650":74.2999999999999829,"1696761666":74.2999999999999829,"1696761682":74.2999999999999829,"1696761698":74.2999999999999829,"1696761715":74.4799999999999898,"1696761731":74.4799999999999898,"1696761746":74.2999999999999829,"1696761763":74.2999999999999829,"1696761778":74.2999999999999829,"1696761795":74.2999999999999829,"1696761810":74.4799999999999898,"1696761826":74.4799999999999898,"1696761843":74.2999999999999829,"1696761859":74.2999999999999829,"1696761875":74.2999999999999829,"1696761890":74.2999999999999829,"1696761907":74.4799999999999898,"1696761923":74.4799999999999898,"1696761939":74.2999999999999829,"1696761955":74.2999999999999829,"1696761971":74.2999999999999829,"1696761987":74.1199999999999761,"1696762003":74.1199999999999761,"1696762019":74.2999999999999829,"1696762035":74.2999999999999829,"1696762051":74.2999999999999829,"1696762052":49.2800000000000225,"1696762066":74.2999999999999829,"1696762083":74.2999999999999829,"1696762099":74.2999999999999829,"1696762115":74.2999999999999829,"1696762131":74.2999999999999829,"1696762147":74.2999999999999829,"1696762163":74.2999999999999972,"1696762179":74.2999999999999972,"1696762195":74.2999999999999972,"1696762211":74.2999999999999972,"1696762227":74.1199999999999903,"1696762243":74.1199999999999903,"1696762259":74.1199999999999903,"1696762275":74.1199999999999903,"1696762291":74.2999999999999972,"1696762307":74.2999999999999972,"1696762323":74.1199999999999903,"1696762339":74.1199999999999903,"1696762355":74.1199999999999903,"1696762371":74.1199999999999903,"1696762387":74.1199999999999903,"1696762403":74.1199999999999903,"1696762419":74.1199999999999903,"1696762435":74.1199999999999903,"1696762451":74.1199999999999903,"1696762467":74.1199999999999903,"1696762483":74.1199999999999903,"1696762499":74.1199999999999903,"1696762515":74.1199999999999903,"1696762531":74.1199999999999903,"1696762547":74.1199999999999903,"1696762563":74.1199999999999903,"1696762579":74.1199999999999903,"1696762595":74.1199999999999903,"1696762611":74.1199999999999903,"1696762627":74.1199999999999903,"1696762643":74.1199999999999903,"1696762659":74.2999999999999972,"1696762675":74.2999999999999972,"1696762691":74.2999999999999972,"1696762707":74.2999999999999972,"1696762723":74.1199999999999903,"1696762739":74.1199999999999903,"1696762755":74.1199999999999903,"1696762771":74.1199999999999903,"1696762787":74.1199999999999903,"1696762803":74.1199999999999903,"1696762819":74.1199999999999903,"1696762835":74.2999999999999972,"1696762851":74.2999999999999972,"1696762867":74.1199999999999903,"1696762883":74.1199999999999903,"1696762899":74.1199999999999903,"1696762915":74.1199999999999903,"1696762931":74.1199999999999903,"1696762947":74.1199999999999903,"1696762963":73.9399999999999835,"1696762979":73.9399999999999835,"1696762995":73.9399999999999835,"1696763011":73.9399999999999835,"1696763027":73.9399999999999835,"1696763043":73.9399999999999835,"1696763059":73.9399999999999835,"1696763075":73.9399999999999835,"1696763091":73.9399999999999835,"1696763107":73.7599999999999767,"1696763124":73.7599999999999767,"1696763139":73.7599999999999767,"1696763155":73.7599999999999767,"1696763171":73.9399999999999835,"1696763188":73.9399999999999835,"1696763203":73.9399999999999835,"1696763219":73.7599999999999767,"1696763235":73.7599999999999767,"1696763251":73.7599999999999767,"1696763268":73.7599999999999767,"1696763284":73.7599999999999767,"1696763300":73.7599999999999767,"1696763316":73.5799999999999699,"1696763332":73.5799999999999699,"1696763348":73.5799999999999699,"1696763363":73.5799999999999699,"1696763379":73.7599999999999767,"1696763396":73.7599999999999767,"1696763412":73.5799999999999699,"1696763428":73.5799999999999699,"1696763444":73.7599999999999767,"1696763460":73.7599999999999767,"1696763476":73.7599999999999767,"1696763492":73.7599999999999767,"1696763508":73.7599999999999767,"1696763524":73.7599999999999767,"1696763540":73.7599999999999767,"1696763556":73.5799999999999699,"1696763572":73.5799999999999699,"1696763588":73.5799999999999699,"1696763604":73.5799999999999699,"1696763620":73.5799999999999699,"1696763636":73.5799999999999699,"1696763652":73.7599999999999767,"1696763668":73.7599999999999767,"1696763684":73.7599999999999767,"1696763700":73.7599999999999767,"1696763716":73.7599999999999767,"1696763732":73.7599999999999767,"1696763748":73.7599999999999767,"1696763764":73.7599999999999767,"1696763780":73.7599999999999767,"1696763796":73.7599999999999767,"1696763812":73.7599999999999767,"1696763828":73.7599999999999767,"1696763844":73.7599999999999767,"1696763852":49.1000000000000227,"1696763860":73.5799999999999699,"1696763876":73.5799999999999699,"1696763892":73.5799999999999699,"1696763908":73.5799999999999699,"1696763924":73.7599999999999767,"1696763940":73.7599999999999767,"1696763956":73.9399999999999835,"1696763972":73.9399999999999835,"1696763988":73.9399999999999835,"1696764004":73.7599999999999767,"1696764020":73.7599999999999767,"1696764036":73.7599999999999767,"1696764052":73.7599999999999767,"1696764068":73.7599999999999909,"1696764084":73.7599999999999909,"1696764100":73.7599999999999909,"1696764116":73.7599999999999909,"1696764132":73.7599999999999909,"1696764148":73.7599999999999909,"1696764164":73.7599999999999909,"1696764180":73.7599999999999909,"1696764196":73.7599999999999909,"1696764212":73.7599999999999909,"1696764228":73.7599999999999909,"1696764244":73.7599999999999909,"1696764260":73.7599999999999909,"1696764277":73.7599999999999909,"1696764292":73.7599999999999909,"1696764308":73.5799999999999841,"1696764324":73.5799999999999841,"1696764340":73.7599999999999909,"1696764356":73.7599999999999909,"1696764372":73.5799999999999841,"1696764388":73.5799999999999841,"1696764404":73.7599999999999909,"1696764420":73.7599999999999909,"1696764436":73.5799999999999841,"1696764453":73.5799999999999841,"1696764468":73.5799999999999841,"1696764484":73.5799999999999841,"1696764500":73.5799999999999841,"1696764516":73.5799999999999841,"1696764533":73.5799999999999841,"1696764548":73.5799999999999841,"1696764564":73.5799999999999841,"1696764581":73.5799999999999841,"1696764596":73.5799999999999841,"1696764612":73.5799999999999841,"1696764629":73.5799999999999841,"1696764645":73.7599999999999909,"1696764661":73.7599999999999909,"1696764677":73.5799999999999841,"1696764692":73.5799999999999841,"1696764708":73.5799999999999841,"1696764724":73.5799999999999841,"1696764740":73.5799999999999841,"1696764757":73.5799999999999841,"1696764772":73.5799999999999841,"1696764789":73.7599999999999909,"1696764805":73.7599999999999909,"1696764821":73.7599999999999909,"1696764837":73.7599999999999909,"1696764853":73.5799999999999841,"1696764869":73.5799999999999841,"1696764885":73.5799999999999841,"1696764901":73.5799999999999841,"1696764917":73.3999999999999773,"1696764933":73.3999999999999773,"1696764949":73.3999999999999773,"1696764965":73.3999999999999773,"1696764981":73.5799999999999841,"1696764997":73.5799999999999841,"1696765013":73.5799999999999841,"1696765029":73.5799999999999841,"1696765045":73.5799999999999841,"1696765061":73.5799999999999841,"1696765077":73.5799999999999841,"1696765093":73.3999999999999773,"1696765109":73.3999999999999773,"1696765125":73.5799999999999841,"1696765141":73.5799999999999841,"1696765157":73.5799999999999841,"1696765173":73.5799999999999841,"1696765189":73.5799999999999841,"1696765205":73.5799999999999841,"1696765221":73.5799999999999841,"1696765237":73.3999999999999773,"1696765253":73.3999999999999773,"1696765269":73.3999999999999773,"1696765285":73.3999999999999773,"1696765301":73.3999999999999773,"1696765317":73.3999999999999773,"1696765333":73.3999999999999773,"1696765349":73.3999999999999773,"1696765365":73.5799999999999841,"1696765381":73.5799999999999841,"1696765397":73.5799999999999841,"1696765413":73.5799999999999841,"1696765429":73.5799999999999841,"1696765445":73.5799999999999841,"1696765461":73.5799999999999841,"1696765477":73.5799999999999841,"1696765493":73.5799999999999841,"1696765509":73.3999999999999773,"1696765525":73.3999999999999773,"1696765541":73.3999999999999773,"1696765557":73.3999999999999773,"1696765573":73.5799999999999841,"1696765589":73.5799999999999841,"1696765605":73.3999999999999773,"1696765621":73.3999999999999773,"1696765637":73.3999999999999773,"1696765652":49.6400000000000219,"1696765653":73.3999999999999773,"1696765669":73.3999999999999773,"1696765685":73.3999999999999773,"1696765701":73.5799999999999983,"1696765717":73.5799999999999983,"1696765733":73.5799999999999983,"1696765749":73.3999999999999915,"1696765765":73.3999999999999915,"1696765781":73.3999999999999915,"1696765797":73.3999999999999915,"1696765813":73.5799999999999983,"1696765829":73.5799999999999983,"1696765845":73.3999999999999915,"1696765861":73.3999999999999915,"1696765877":73.3999999999999915,"1696765893":73.3999999999999915,"1696765909":73.5799999999999983,"1696765925":73.5799999999999983,"1696765942":73.5799999999999983,"1696765957":73.5799999999999983,"1696765974":73.5799999999999983,"1696765989":73.5799999999999983,"1696766005":73.5799999999999983,"1696766021":73.5799999999999983,"1696766038":73.5799999999999983,"1696766054":73.5799999999999983,"1696766069":73.5799999999999983,"1696766085":73.3999999999999915,"1696766101":73.3999999999999915,"1696766118":73.3999999999999915,"1696766133":73.3999999999999915,"1696766149":73.2199999999999847,"1696766165":73.2199999999999847,"1696766182":73.3999999999999915,"1696766197":73.3999999999999915,"1696766214":73.5799999999999983,"1696766230":73.3999999999999915,"1696766246":73.3999999999999915,"1696766262":73.3999999999999915,"1696766278":73.3999999999999915,"1696766294":73.3999999999999915,"1696766310":73.3999999999999915,"1696766326":73.3999999999999915,"1696766342":73.3999999999999915,"1696766358":73.5799999999999983,"1696766374":73.5799999999999983,"1696766390":73.3999999999999915,"1696766406":73.3999999999999915,"1696766422":73.3999999999999915,"1696766438":73.3999999999999915,"1696766454":73.3999999999999915,"1696766470":73.3999999999999915,"1696766486":73.5799999999999983,"1696766502":73.5799999999999983,"1696766518":73.5799999999999983,"1696766534":73.5799999999999983,"1696766550":73.5799999999999983,"1696766566":73.5799999999999983,"1696766582":73.5799999999999983,"1696766598":73.5799999999999983,"1696766614":73.5799999999999983,"1696766630":73.3999999999999915,"1696766646":73.3999999999999915,"1696766662":73.3999999999999915,"1696766678":73.3999999999999915,"1696766694":73.5799999999999983,"1696766710":73.5799999999999983,"1696766726":73.5799999999999983,"1696766742":73.3999999999999915,"1696766758":73.3999999999999915,"1696766774":73.2199999999999847,"1696766790":73.2199999999999847,"1696766806":73.2199999999999847,"1696766822":73.2199999999999847,"1696766838":73.2199999999999847,"1696766854":73.2199999999999847,"1696766870":73.2199999999999847,"1696766886":73.2199999999999847,"1696766902":73.2199999999999847,"1696766918":73.2199999999999847,"1696766934":73.0399999999999778,"1696766950":73.0399999999999778,"1696766966":73.0399999999999778,"1696766982":73.0399999999999778,"1696766998":73.0399999999999778,"1696767014":73.0399999999999778,"1696767030":73.0399999999999778,"1696767046":73.0399999999999778,"1696767062":73.0399999999999778,"1696767078":73.0399999999999778,"1696767094":73.0399999999999778,"1696767110":73.0399999999999778,"1696767127":73.0399999999999778,"1696767142":73.0399999999999778,"1696767159":73.0399999999999778,"1696767174":73.0399999999999778,"1696767190":73.0399999999999778,"1696767206":73.2199999999999847,"1696767222":73.2199999999999847,"1696767238":73.2199999999999847,"1696767254":73.4000000000000057,"1696767270":73.4000000000000057,"1696767286":73.2199999999999989,"1696767302":73.2199999999999989,"1696767318":73.2199999999999989,"1696767334":73.2199999999999989,"1696767350":73.2199999999999989,"1696767367":73.2199999999999989,"1696767382":73.2199999999999989,"1696767399":73.2199999999999989,"1696767415":73.2199999999999989,"1696767430":73.2199999999999989,"1696767447":73.2199999999999989,"1696767452":50.3600000000000207,"1696767463":73.2199999999999989,"1696767478":73.2199999999999989,"1696767494":73.2199999999999989,"1696767510":73.2199999999999989,"1696767527":73.4000000000000057,"1696767542":73.4000000000000057,"1696767558":73.2199999999999989,"1696767575":73.2199999999999989,"1696767591":73.2199999999999989,"1696767606":73.2199999999999989,"1696767623":73.039999999999992,"1696767639":73.039999999999992,"1696767655":73.2199999999999989,"1696767671":73.2199999999999989,"1696767687":73.2199999999999989,"1696767702":73.2199999999999989,"1696767719":73.2199999999999989,"1696767735":73.2199999999999989,"1696767751":73.2199999999999989,"1696767767":73.4000000000000057,"1696767783":73.4000000000000057,"1696767799":73.4000000000000057,"1696767815":73.4000000000000057,"1696767831":73.4000000000000057,"1696767847":73.4000000000000057,"1696767863":73.2199999999999989,"1696767879":73.2199999999999989,"1696767895":73.2199999999999989,"1696767911":73.2199999999999989,"1696767927":73.039999999999992,"1696767943":73.039999999999992,"1696767959":73.2199999999999989,"1696767975":73.21999999999999* Connection #0 to host 192.168.1.197 left intact
    89,"1696767991":73.2199999999999989,"1696768007":73.2199999999999989,"1696768023":73.2199999999999989,"1696768039":73.2199999999999989,"1696768055":73.2199999999999989,"1696768071":73.2199999999999989,"1696768087":73.2199999999999989,"1696768103":73.4000000000000057,"1696768119":73.4000000000000057,"1696768135":73.2199999999999989,"1696768151":73.2199999999999989,"1696768167":72.8599999999999994,"1696768183":72.8599999999999994,"1696768199":72.8599999999999994,"1696768215":72.8599999999999994,"1696768231":72.8599999999999994,"1696768247":72.8599999999999994,"1696768263":72.8599999999999994,"1696793848":62.6000000000000014}}]pmw@ticktockpi:~ $

@ylin30
Copy link
Collaborator

ylin30 commented Oct 8, 2023

I missed your question since the format was messed up. I believe you meant to ask why two queries with different locations returns the same result. What I would do is to make sure the specific data points are actually inserted in TT first.

According to teh documentation a put ie in this form: put = so I use /usr/bin/curl -s -XPOST 'http://192.168.1.197:6182/api/put' -d 'put temperature 1696695267 78.62 location=office'

This data point was actually successfully inserted in TT, as you can see it in the query result without downsampling (i.e., m=avg:temperature{location=office}). Just search 1696695267 in your query result, you can see the value 78.6200000000000045 (the last two digit 45 is due to precision lost in data compression).

and /usr/bin/curl -s -XPOST 'http://192.168.1.197:6182/api/put' -d 'put temperature 1696695375 68.9 location=foxboro'

This data point is not supposed to be in your query result since its location is not 'office'. I don't know what's wrong with your first query. Maybe the two time series happen to have same values at the time range [1696695000,+10min). You can do the same query without downsampling but with location='foxboro' (i.e, m=avg:temperature{location=foxboro}) to see if the data point is correctly inserted or not.

BTW, to make query result concise, you can adjust start and end timestamps to limit the time range, e.g., start=1696695000 &end=1696696000

@juggledad
Copy link
Author

juggledad commented Oct 9, 2023

I ran a test to show the problem so there are just two data points,
note: I change the resolution to milliseconds:

; tsdb.timestamp.resolution = millisecond

here is what I did:


  1. With ticktock down, I deleted the data and log folders

pmw@ticktockpi:~/ticktock $ ls
admin         bin   docker  include  Makefile         Makefile.docker  objs       scripts  test
api-examples  conf  docs    LICENSE  Makefile.centos  Makefile.ubuntu  README.md  src      tools
pmw@ticktockpi:~/ticktock $ 

  1. started ticktock and ran ping

pmw@ticktockpi:~/ticktock $ ./admin/ping.sh
pong

  1. posted a temperature reading (77.54) with location=office

pmw@ticktockpi:~/ticktock $ /usr/bin/curl -s  -XPOST 'http://192.168.1.197:6182/api/put'  -d 'put temperature 1696847275 77.54 location=office'

  1. then queried it {location=office}...one reading returned:

pmw@ticktockpi:~/ticktock $ /usr/bin/curl -s 'http://192.168.1.197:6182/api/query?start=1600000000&m=avg:temperature&\{location=office\}'
[{"metric":"temperature","tags":{"location":"office"},"aggregateTags":[],"dps":{"1696847275":77.5400000000000063}}]pmw@ticktockpi:~/ticktock $ 

  1. posted a temperature reading (64.22) with location=foxboro

pmw@ticktockpi:~/ticktock $ /usr/bin/curl -s  -XPOST 'http://192.168.1.197:6182/api/put'  -d 'put temperature 1696847401 64.22 location=foxboro'

  1. then queried it location=office...TWO reading returned:

pmw@ticktockpi:~/ticktock $ /usr/bin/curl -s 'http://192.168.1.197:6182/api/query?start=1600000000&m=avg:temperature&\{location=office\}'
[{"metric":"temperature","tags":{},"aggregateTags":["location"],"dps":{"1696847275":77.5400000000000063,"1696847401":64.2199999999999989}}]pmw@ticktockpi:~/ticktock $ 

  1. then queried it location=foxboro...TWO reading returned:

pmw@ticktockpi:~/ticktock $ /usr/bin/curl -s 'http://192.168.1.197:6182/api/query?start=1600000000&m=avg:temperature&\{location=foxboro\}'
[{"metric":"temperature","tags":{},"aggregateTags":["location"],"dps":{"1696847275":77.5400000000000063,"1696847401":64.2199999999999989}}]pmw@ticktockpi:~/ticktock $

The same two entries are returned


  1. listed the ticktock.meta file:

pmw@ticktockpi:~/ticktock $ cat data/ticktock.meta
temperature location=office 0
temperature location=foxboro 1

How can I retrieve the data from just one location?

@juggledad
Copy link
Author

juggledad commented Oct 9, 2023

p.s. just to see what would happen, I changed things in the put and crashed ticktock

pmw@ticktockpi:~/ticktock $ /usr/bin/curl -s  -XPOST 'http://192.168.1.197:6182/api/put'  -d 'put office 1696847275 77.54 temperature=location'

./bin/tt[0x17898]
/lib/arm-linux-gnueabihf/libc.so.6(__default_sa_restorer+0x0)[0x76be2900]
./bin/tt[0x249c4]
./bin/tt[0x5b330]
./bin/tt[0x4041c]
./bin/tt[0x2d828]
./bin/tt[0x41278]
./bin/tt[0x41428]
./bin/tt[0x2adec]
./bin/tt[0x2b7e8]
./bin/tt[0x30438]
/lib/arm-linux-gnueabihf/libstdc++.so.6(+0xa9150)[0x76e77150]
Interrupted (11), shutting down...
Start shutdown process...

in addition, the data files and mete were wiped out

pmw@ticktockpi:~/ticktock/data $ ls -al
total 8
drwxr--r--  2 pmw pmw 4096 Oct  9 16:25 .
drwxr-xr-x 16 pmw pmw 4096 Oct  9 16:25 ..
-rw-r--r--  1 pmw pmw    0 Oct  9 16:25 ticktock.meta

(I'm good at breaking things (grin)

@ylin30
Copy link
Collaborator

ylin30 commented Oct 9, 2023

  1. then queried it location=office...TWO reading returned:
pmw@ticktockpi:~/ticktock $ /usr/bin/curl -s 'http://192.168.1.197:6182/api/query?start=1600000000&m=avg:temperature&\{location=office\}'
[{"metric":"temperature","tags":{},"aggregateTags":["location"],"dps":{"1696847275":77.5400000000000063,"1696847401":64.2199999999999989}}]pmw@ticktockpi:~/ticktock $ 
  1. then queried it location=foxboro...TWO reading returned:
pmw@ticktockpi:~/ticktock $ /usr/bin/curl -s 'http://192.168.1.197:6182/api/query?start=1600000000&m=avg:temperature&\{location=foxboro\}'
[{"metric":"temperature","tags":{},"aggregateTags":["location"],"dps":{"1696847275":77.5400000000000063,"1696847401":64.2199999999999989}}]pmw@ticktockpi:~/ticktock $

The same two entries are returned

hm, this is a serious bug. Let me repro it in my side. I assume you use the latest version 0.12.1, don't you?

@ylin30
Copy link
Collaborator

ylin30 commented Oct 9, 2023

p.s. just to see what would happen, I changed things in the put and crashed ticktock

pmw@ticktockpi:~/ticktock $ /usr/bin/curl -s  -XPOST 'http://192.168.1.197:6182/api/put'  -d 'put office 1696847275 77.54 temperature=location'

The put statement looks fine to me. TT shouldn't crash anyway. Are you running it in what hardware (RPI on bullseye 32bit) and what version of TT (v0.12.1)?

@juggledad
Copy link
Author

Running on a PI 2 Model B running Bullseye 32 bit
pmw@ticktockpi:~/ticktock/data $ cat /etc/os-release
PRETTY_NAME="Raspbian GNU/Linux 11 (bullseye)"
NAME="Raspbian GNU/Linux"
VERSION_ID="11"
VERSION="11 (bullseye)"
VERSION_CODENAME=bullseye
ID=raspbian
ID_LIKE=debian
HOME_URL="http://www.raspbian.org/"
SUPPORT_URL="http://www.raspbian.org/RaspbianForums"
BUG_REPORT_URL="http://www.raspbian.org/RaspbianBugs"

@juggledad
Copy link
Author

Oh, and it is ticktock.0.12.1

@ylin30
Copy link
Collaborator

ylin30 commented Oct 9, 2023

oh, I know why. Your query format is wrong. You have an extra '&' between temperature and {location=office}

ylin30@raspberrypi:~/ticktock $ /usr/bin/curl -s 'http:/127.0.0.1:6182/api/query?start=1600000000&m=avg:temperature&{location=office}'
[{"metric":"temperature","tags":{},"aggregateTags":["location"],"dps":{"1696847275":77.5400000000000063,"1696847401":64.2199999999999989}}]
ylin30@raspberrypi:~/ticktock $

I can repro it.

ylin30@raspberrypi:~/ticktock $
ylin30@raspberrypi:~/ticktock $ /usr/bin/curl -s 'http:/127.0.0.1:6182/api/query?start=1600000000&m=avg:temperature\{location=office\}'
[{"metric":"temperature","tags":{"location":"office"},"aggregateTags":[],"dps":{"1696847275":77.5400000000000063}}]
ylin30@raspberrypi:~/ticktock $
ylin30@raspberrypi:~/ticktock $ /usr/bin/curl -s 'http:/127.0.0.1:6182/api/query?start=1600000000&m=avg:temperature\{location=foxboro\}'
[{"metric":"temperature","tags":{"location":"foxboro"},"aggregateTags":[],"dps":{"1696847401":64.2199999999999989}}]ylin30@raspberrypi:~/ticktock $
ylin30@raspberrypi:~/ticktock $

Note there is no '&' after temperature. Another hint is "tags":{"location":"office"} which means the result is really limited to 'location=office'. While in the wrong result, there is no tag but only "aggregateTags":["location"], which means that the location is completed ignored and all data are aggregated.

We will think about how to add validation message to protect users from mis-typos.

I am still trying to repro your crash case.

@juggledad
Copy link
Author

I was basing the query off this the Usage Examples:

[2.5 READ a metric testM1 since 1600000000 epoch time (second) to 1633412176.](https://github.com/ytyou/ticktock/issues/58#25-read-a-metric-testm1-since-1600000000-epoch-time-second-to-1633412176)

curl -v 'http://localhost:6182/api/query?start=1600000000&end=1633412176&m=avg:testM1\{host=foo\}'

@ylin30
Copy link
Collaborator

ylin30 commented Oct 9, 2023

Unfortunately I am not able to repro the crash. Please refer to my execution below.

ylin30@raspberrypi:~/ticktock $ /usr/bin/curl -s -v  -XPOST 'http://127.0.0.1:6182/api/put'  -d 'put office 1696847275 77.54 temperature=locatiion'
*   Trying 127.0.0.1:6182...
* Connected to 127.0.0.1 (127.0.0.1) port 6182 (#0)
> POST /api/put HTTP/1.1
> Host: 127.0.0.1:6182
> User-Agent: curl/7.74.0
> Accept: */*
> Content-Length: 49
> Content-Type: application/x-www-form-urlencoded
>
* upload completely sent off: 49 out of 49 bytes
* Mark bundle as not supporting multiuse
< HTTP/1.1 200 OK
< Content-Length: 0
< Content-Type: text/plain
<
* Connection #0 to host 127.0.0.1 left intact
ylin30@raspberrypi:~/ticktock $ /usr/bin/curl -s 'http:/127.0.0.1:6182/api/query?start=1600000000&m=avg:office\{temperature=locatiion\}'
[{"metric":"office","tags":{"temperature":"locatiion"},"aggregateTags":[],"dps":{"1696847275":77.5400000000000063}}]ylin30@raspberrypi:~/ticktock $
ylin30@raspberrypi:~/ticktock $
ylin30@raspberrypi:~/ticktock $
ylin30@raspberrypi:~/ticktock $ cat ./data/ticktock.meta
temperature location=office 0
temperature location=foxboro 1
office temperature=locatiion 2
ylin30@raspberrypi:~/ticktock $

@ylin30
Copy link
Collaborator

ylin30 commented Oct 9, 2023

I was basing the query off this the Usage Examples:

[2.5 READ a metric testM1 since 1600000000 epoch time (second) to 1633412176.](https://github.com/ytyou/ticktock/issues/58#25-read-a-metric-testm1-since-1600000000-epoch-time-second-to-1633412176)

curl -v 'http://localhost:6182/api/query?start=1600000000&end=1633412176&m=avg:testM1\{host=foo\}'

I add another note after this example in the wiki.

Also note that there is no & in between m=avg:testM1 and {host=foo}. If you add a & in between, then anything after & won't be considered as part of query parameters m=aggregator:downsampler:metric{tag1=val1,tag2=val2...}. The results would be like no tags is specified.

@juggledad
Copy link
Author

Yea!! Thank you so much. That works!!

And I was wrong about where I got that from. At this point I've tried so many iterations I probably added it in at some point.

Do you want me to try and reproduce the crash in another thread and if so is there any information I can gather to help debug it?

@ylin30
Copy link
Collaborator

ylin30 commented Oct 9, 2023

Do you want me to try and reproduce the crash in another thread and if so is there any information I can gather to help debug it?

Crash is hard to debug unless with core dump and in debug mode. It would be great if you can repro reliably. Just collect the steps and maybe logs.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants