BUG #18130: \copy fails with "could not read block" or "page should be empty but not" errors due to triggers

From: PG Bug reporting form <noreply(at)postgresql(dot)org>
To: pgsql-bugs(at)lists(dot)postgresql(dot)org
Cc: enderstd(at)gmail(dot)com
Subject: BUG #18130: \copy fails with "could not read block" or "page should be empty but not" errors due to triggers
Date: 2023-09-22 11:39:12
Message-ID: 18130-7a86a7356a75209d@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

The following bug has been logged on the website:

Bug reference: 18130
Logged by: Ivan Kolombet
Email address: enderstd(at)gmail(dot)com
PostgreSQL version: 16.0
Operating system: macOS Ventura 13.6
Description:

I'm trying to copy a CSV file to a table and it errors out with different
error messages every time:

PG version: PostgreSQL 16.0 on aarch64-apple-darwin21.6.0, compiled by Apple
clang version 14.0.0 (clang-1400.0.29.102), 64-bit
Machine: M1 Max MacBook Pro.

===
kolombet=# \copy test from 'copy_bug_data2.csv' csv;
ERROR: XX001: could not read block 5 in file "base/16385/238687": read only
0 of 8192 bytes
CONTEXT: COPY test, line 472:
"0,185647715,222655,489637,2,2023-07-31,9100.0000000,302110385,2023-07-30
14:16:36.750981+00,14026347..."
LOCATION: mdread, md.c:800
Time: 12.599 ms
kolombet=# \copy test from 'copy_bug_data2.csv' csv;
ERROR: XX001: could not read block 9 in file "base/16385/238632": read only
0 of 8192 bytes
CONTEXT: COPY test, line 583:
"0,640725189,101747,203168,2,2023-08-19,5800.0000000,286019202,2023-07-30
14:16:36.750981+00,14201212..."
LOCATION: mdread, md.c:800
Time: 18.222 ms
kolombet=# \copy test from 'copy_bug_data2.csv' csv;
ERROR: XX000: page 9 of relation "test_0_0_y2023m8" should be empty but is
not
CONTEXT: COPY test, line 82:
"0,640725189,101742,203163,1,2023-08-01,2700.0000000,286017479,2023-07-30
14:16:36.750981+00,14032516..."
LOCATION: RelationAddBlocks, hio.c:362
Time: 4.547 ms
===

My table is somewhat complicated: three levels of partitions, with two
triggers.
Disabling the triggers doesn't resolve the issue, but deleting them does.

Attempt with triggers disabled:
===
kolombet=# alter table test disable trigger all;
ALTER TABLE
Time: 25.529 ms
kolombet=# \copy test from 'copy_bug_data2.csv' csv;
ERROR: XX001: could not read block 5 in file "base/16385/240774": read only
0 of 8192 bytes
CONTEXT: COPY test, line 472:
"0,185647715,222655,489637,2,2023-07-31,9100.0000000,302110385,2023-07-30
14:16:36.750981+00,14026347..."
LOCATION: mdread, md.c:800
===

Remove triggers and try again:
===
kolombet=# drop trigger t_test_trigger on test;
DROP TRIGGER
Time: 27.988 ms
kolombet=# drop trigger t_test_trigger2 on test;
DROP TRIGGER
Time: 26.545 ms
kolombet=# \copy test from 'copy_bug_data2.csv' csv;
COPY 881 // success
===

Below are the schema script and the data in csv format. I tried to minimize
the schema and the csv size.

copy command looks like this: \copy test from 'copy_bug_data2.csv' csv

Reproducing consistently on my machine.

===
create table if not exists test (
a smallint,
b bigint,
c bigint,
d bigint,
e smallint,
plan_date date,
g numeric(18,7),
h bigint,
i timestamptz,
j bigint,
k integer,
l smallint,
primary key (a, b, c, d, e, plan_date)
) partition by list(a);

/* this is just to generate partition structure automatically */
create or replace function test_add_partitions(a integer, year integer)
returns void
volatile strict
as
$$
declare
parent text;
root text;
begin
root := 'test_' || a::text;
execute 'create table if not exists ' || root || ' partition of test for
values in (' || a::text || ') partition by hash (b);';
for b in 0..7 loop
parent := root || '_' || b::text;

execute 'create table if not exists ' || parent ||
' partition of ' || root || ' for values with (modulus
8, remainder ' || b::text || ')' ||
' partition by range (plan_date);';

execute 'create table if not exists ' ||
parent || '_y' || year::text || 'm1 partition of ' ||
parent ||
' for values from (''' || year::text || '-01-01'') to
(''' || year::text ||
'-02-01'');';
execute 'create table if not exists ' ||
parent || '_y' || year::text || 'm2 partition of ' ||
parent ||
' for values from (''' || year::text || '-02-01'') to
(''' || year::text ||
'-03-01'');';
execute 'create table if not exists ' ||
parent || '_y' || year::text || 'm3 partition of ' ||
parent ||
' for values from (''' || year::text || '-03-01'') to
(''' || year::text ||
'-04-01'');';
execute 'create table if not exists ' ||
parent || '_y' || year::text || 'm4 partition of ' ||
parent ||
' for values from (''' || year::text || '-04-01'') to
(''' || year::text ||
'-05-01'');';
execute 'create table if not exists ' ||
parent || '_y' || year::text || 'm5 partition of ' ||
parent ||
' for values from (''' || year::text || '-05-01'') to
(''' || year::text ||
'-06-01'');';
execute 'create table if not exists ' ||
parent || '_y' || year::text || 'm6 partition of ' ||
parent ||
' for values from (''' || year::text || '-06-01'') to
(''' || year::text ||
'-07-01'');';
execute 'create table if not exists ' ||
parent || '_y' || year::text || 'm7 partition of ' ||
parent ||
' for values from (''' || year::text || '-07-01'') to
(''' || year::text ||
'-08-01'');';
execute 'create table if not exists ' ||
parent || '_y' || year::text || 'm8 partition of ' ||
parent ||
' for values from (''' || year::text || '-08-01'') to
(''' || year::text ||
'-09-01'');';
execute 'create table if not exists ' ||
parent || '_y' || year::text || 'm9 partition of ' ||
parent ||
' for values from (''' || year::text || '-09-01'') to
(''' || year::text ||
'-10-01'');';
execute 'create table if not exists ' ||
parent || '_y' || year::text || 'm10 partition of ' ||
parent ||
' for values from (''' || year::text || '-10-01'') to
(''' || year::text ||
'-11-01'');';
execute 'create table if not exists ' ||
parent || '_y' || year::text || 'm11 partition of ' ||
parent ||
' for values from (''' || year::text || '-11-01'') to
(''' || year::text ||
'-12-01'');';
execute 'create table if not exists ' ||
parent || '_y' || year::text || 'm12 partition of ' ||
parent ||
' for values from (''' || year::text || '-12-01'') to
(''' || (year + 1)::text ||
'-01-01'');';
end loop;
end;
$$ language plpgsql;

select test_add_partitions(0, 2022);
select test_add_partitions(0, 2023);
select test_add_partitions(0, 2024);

create or replace function t_test_trigger_func()
returns trigger as
$$
BEGIN
NEW.h := nextval(TG_ARGV[0]::regclass);
NEW.i := NOW();
RETURN NEW;
END;
$$ language plpgsql volatile;

create sequence if not exists test_seq;

create or replace trigger t_test_trigger before insert or update on test for
each row
execute procedure t_test_trigger_func('test_seq');

create or replace function t_test_trigger_func2()
returns trigger as
$$
BEGIN
NEW.l = LEAST(OLD.l + 1, 32767);
RETURN NEW;
END;
$$ language plpgsql volatile;

create or replace trigger t_test_trigger2 before update on test for each
row
execute procedure t_test_trigger_func2();
===

And here's the csv data:

===
0,634055868,275174,702098,1,2023-07-30,3000.0000000,204560046,2023-07-30
14:16:36.750981+00,1729747992,720946,0
0,634055868,275174,702098,1,2023-07-31,3000.0000000,204560047,2023-07-30
14:16:36.750981+00,1729747993,720946,0
0,634055868,275174,702098,2,2023-07-30,3000.0000000,204560210,2023-07-30
14:16:36.750981+00,1729747749,720947,0
0,634055868,275174,702098,2,2023-07-31,3000.0000000,204560211,2023-07-30
14:16:36.750981+00,1729747750,720947,0
0,634055868,275183,702123,1,2023-07-30,3000.0000000,204560374,2023-07-30
14:16:36.750981+00,1729748984,720971,0
0,634055868,275183,702123,1,2023-07-31,3000.0000000,204560375,2023-07-30
14:16:36.750981+00,1729748985,720971,0
0,634055868,275183,702123,2,2023-07-30,3000.0000000,204560538,2023-07-30
14:16:36.750981+00,1729748741,720972,0
0,634055868,275183,702123,2,2023-07-31,3000.0000000,204560539,2023-07-30
14:16:36.750981+00,1729748742,720972,0
0,634055868,275282,702619,1,2023-07-30,3000.0000000,204560702,2023-07-30
14:16:36.750981+00,1438187999,721216,0
0,634055868,275282,702619,1,2023-07-31,3000.0000000,204560703,2023-07-30
14:16:36.750981+00,1438188000,721216,0
0,634055868,275282,702619,2,2023-07-30,3000.0000000,204560866,2023-07-30
14:16:36.750981+00,1438187850,721217,0
0,634055868,275282,702619,2,2023-07-31,3000.0000000,204560867,2023-07-30
14:16:36.750981+00,1438187851,721217,0
0,634055868,275283,702635,1,2023-07-30,3500.0000000,204561030,2023-07-30
14:16:36.750981+00,1729749718,721218,0
0,634055868,275283,702635,1,2023-07-31,3500.0000000,204561031,2023-07-30
14:16:36.750981+00,1729749719,721218,0
0,634055868,275283,702635,2,2023-07-30,3500.0000000,204561194,2023-07-30
14:16:36.750981+00,1729749475,721219,0
0,634055868,275283,702635,2,2023-07-31,3500.0000000,204561195,2023-07-30
14:16:36.750981+00,1729749476,721219,0
0,634055868,275284,702637,1,2023-07-30,3500.0000000,204561358,2023-07-30
14:16:36.750981+00,1729748498,721220,0
0,634055868,275284,702637,1,2023-07-31,3500.0000000,204561359,2023-07-30
14:16:36.750981+00,1729748499,721220,0
0,634055868,275284,702637,2,2023-07-30,3500.0000000,204561522,2023-07-30
14:16:36.750981+00,1729748255,721221,0
0,634055868,275284,702637,2,2023-07-31,3500.0000000,204561523,2023-07-30
14:16:36.750981+00,1729748256,721221,0
0,120894640,306460,830190,1,2023-07-30,1900.0000000,230145128,2023-07-30
14:16:36.750981+00,1586279154,813424,0
0,120894640,306460,830190,1,2023-07-31,1900.0000000,230145129,2023-07-30
14:16:36.750981+00,1586279621,813424,0
0,120894640,306460,830190,2,2023-07-30,1900.0000000,230145283,2023-07-30
14:16:36.750981+00,1586279125,813425,0
0,120894640,306460,830190,2,2023-07-31,1900.0000000,230145284,2023-07-30
14:16:36.750981+00,1586279591,813425,0
0,120894640,306481,830248,1,2023-07-30,1100.0000000,230145438,2023-07-30
14:16:36.750981+00,1586279212,813497,0
0,120894640,306481,830248,1,2023-07-31,1100.0000000,230145439,2023-07-30
14:16:36.750981+00,1586279681,813497,0
0,120894640,306481,830248,2,2023-07-30,1600.0000000,230145593,2023-07-30
14:16:36.750981+00,1586279183,813498,0
0,120894640,306481,830248,2,2023-07-31,1600.0000000,230145594,2023-07-30
14:16:36.750981+00,1586279651,813498,0
0,120894640,306482,830249,1,2023-07-30,2600.0000000,230145748,2023-07-30
14:16:36.750981+00,1586279328,813499,0
0,120894640,306482,830249,1,2023-07-31,2600.0000000,230145749,2023-07-30
14:16:36.750981+00,1586279801,813499,0
0,120894640,306482,830249,2,2023-07-30,2600.0000000,230145903,2023-07-30
14:16:36.750981+00,1586279299,813500,0
0,120894640,306482,830249,2,2023-07-31,2600.0000000,230145904,2023-07-30
14:16:36.750981+00,1586279771,813500,0
0,120894640,306482,830249,3,2023-07-30,3000.0000000,230146058,2023-07-30
14:16:36.750981+00,1586279270,813501,0
0,120894640,306482,830249,3,2023-07-31,3000.0000000,230146059,2023-07-30
14:16:36.750981+00,1586279741,813501,0
0,120894640,306482,830249,4,2023-07-30,3000.0000000,230146213,2023-07-30
14:16:36.750981+00,1586279241,813502,0
0,120894640,306482,830249,4,2023-07-31,3000.0000000,230146214,2023-07-30
14:16:36.750981+00,1586279711,813502,0
0,120894640,306487,830254,1,2023-07-30,1100.0000000,230146368,2023-07-30
14:16:36.750981+00,1586279415,813509,0
0,120894640,306487,830254,1,2023-07-31,1100.0000000,230146369,2023-07-30
14:16:36.750981+00,1586279891,813509,0
0,120894640,306487,830254,2,2023-07-30,1600.0000000,230146523,2023-07-30
14:16:36.750981+00,1586279386,813510,0
0,120894640,306487,830254,2,2023-07-31,1600.0000000,230146524,2023-07-30
14:16:36.750981+00,1586279861,813510,0
0,120894640,306487,830254,3,2023-07-30,1950.0000000,230146678,2023-07-30
14:16:36.750981+00,1586279357,813511,0
0,120894640,306487,830254,3,2023-07-31,1950.0000000,230146679,2023-07-30
14:16:36.750981+00,1586279831,813511,0
0,120894640,306491,830265,1,2023-07-30,1900.0000000,230146833,2023-07-30
14:16:36.750981+00,1586279473,813520,0
0,120894640,306491,830265,1,2023-07-31,1900.0000000,230146834,2023-07-30
14:16:36.750981+00,1586279951,813520,0
0,120894640,306491,830265,2,2023-07-30,1900.0000000,230146988,2023-07-30
14:16:36.750981+00,1586279444,813521,0
0,120894640,306491,830265,2,2023-07-31,1900.0000000,230146989,2023-07-30
14:16:36.750981+00,1586279921,813521,0
0,120894640,306536,830463,1,2023-07-30,2000.0000000,230147143,2023-07-30
14:16:36.750981+00,1586279589,813659,0
0,120894640,306536,830463,1,2023-07-31,2000.0000000,230147144,2023-07-30
14:16:36.750981+00,1586280071,813659,0
0,120894640,306536,830463,2,2023-07-30,2000.0000000,230147298,2023-07-30
14:16:36.750981+00,1586279560,813660,0
0,120894640,306536,830463,2,2023-07-31,2000.0000000,230147299,2023-07-30
14:16:36.750981+00,1586280041,813660,0
0,120894640,306536,830463,3,2023-07-30,2000.0000000,230147453,2023-07-30
14:16:36.750981+00,1586279531,813661,0
0,120894640,306536,830463,3,2023-07-31,2000.0000000,230147454,2023-07-30
14:16:36.750981+00,1586280011,813661,0
0,120894640,306536,830463,4,2023-07-30,2000.0000000,230147608,2023-07-30
14:16:36.750981+00,1586279502,813662,0
0,120894640,306536,830463,4,2023-07-31,2000.0000000,230147609,2023-07-30
14:16:36.750981+00,1586279981,813662,0
0,954493183,216176,461514,1,2023-07-30,5500.0000000,204562378,2023-07-30
14:16:36.750981+00,1183374851,548487,0
0,954493183,216176,461514,1,2023-07-31,5500.0000000,204562379,2023-07-30
14:16:36.750981+00,1183374855,548487,0
0,954493183,216176,461514,2,2023-07-30,5500.0000000,204562899,2023-07-30
14:16:36.750981+00,1183375018,548488,0
0,954493183,216176,461514,2,2023-07-31,5500.0000000,204562900,2023-07-30
14:16:36.750981+00,1183375021,548488,0
0,954493183,216312,462120,1,2023-07-30,4500.0000000,204563420,2023-07-30
14:16:36.750981+00,1183375244,548882,0
0,954493183,216312,462120,1,2023-07-31,4500.0000000,204563421,2023-07-30
14:16:36.750981+00,1183375245,548882,0
0,954493183,216312,462120,2,2023-07-30,4500.0000000,204563941,2023-07-30
14:16:36.750981+00,1183375142,548883,0
0,954493183,216312,462120,2,2023-07-31,4500.0000000,204563942,2023-07-30
14:16:36.750981+00,1183375145,548883,0
0,954493183,216439,462715,1,2023-07-30,3600.0000000,204564462,2023-07-30
14:16:36.750981+00,1183375449,549233,0
0,954493183,216439,462715,1,2023-07-31,3600.0000000,204564463,2023-07-30
14:16:36.750981+00,1183375451,549233,0
0,954493183,216439,462715,2,2023-07-30,3600.0000000,204564983,2023-07-30
14:16:36.750981+00,1183375337,549234,0
0,954493183,216439,462715,2,2023-07-31,3600.0000000,204564984,2023-07-30
14:16:36.750981+00,1183375341,549234,0
0,954493183,216441,462727,1,2023-07-30,3600.0000000,204565504,2023-07-30
14:16:36.750981+00,1183375594,549237,0
0,954493183,216441,462727,1,2023-07-31,3600.0000000,204565505,2023-07-30
14:16:36.750981+00,1183375598,549237,0
0,954493183,216441,462727,2,2023-07-30,3600.0000000,204566025,2023-07-30
14:16:36.750981+00,1183375729,549238,0
0,954493183,216441,462727,2,2023-07-31,3600.0000000,204566026,2023-07-30
14:16:36.750981+00,1183375732,549238,0
0,954493183,216442,462742,1,2023-07-30,3000.0000000,204566546,2023-07-30
14:16:36.750981+00,1183373103,549239,0
0,954493183,216442,462742,1,2023-07-31,3000.0000000,204566547,2023-07-30
14:16:36.750981+00,1183373107,549239,0
0,954493183,216442,462742,2,2023-07-30,3000.0000000,204567067,2023-07-30
14:16:36.750981+00,1183372939,549240,0
0,954493183,216442,462742,2,2023-07-31,3000.0000000,204567068,2023-07-30
14:16:36.750981+00,1183372942,549240,0
0,954493183,216462,462836,1,2023-07-30,810.0000000,204567588,2023-07-30
14:16:36.750981+00,1183373274,549302,0
0,954493183,216462,462836,1,2023-07-31,810.0000000,204567589,2023-07-30
14:16:36.750981+00,1183373277,549302,0
0,954493183,289707,762166,1,2023-07-30,2000.0000000,204568109,2023-07-30
14:16:36.750981+00,1183374685,763816,0
0,954493183,289707,762166,1,2023-07-31,2000.0000000,204568110,2023-07-30
14:16:36.750981+00,1183374690,763816,0
0,954493183,289707,762166,2,2023-07-30,2500.0000000,204568630,2023-07-30
14:16:36.750981+00,1183373464,763817,0
0,954493183,289707,762166,2,2023-07-31,2500.0000000,204568631,2023-07-30
14:16:36.750981+00,1183373467,763817,0
0,185647715,222578,489241,1,2023-07-30,3300.0000000,302101023,2023-07-30
14:16:36.750981+00,1401895960,567261,0
0,640725189,101742,203163,1,2023-08-01,2700.0000000,286017479,2023-07-30
14:16:36.750981+00,1403251616,257550,0
0,640725189,101742,203163,1,2023-08-02,2700.0000000,286017480,2023-07-30
14:16:36.750981+00,1404302246,257550,0
0,640725189,101742,203163,1,2023-08-03,2700.0000000,286017481,2023-07-30
14:16:36.750981+00,1405471662,257550,0
0,640725189,101742,203163,1,2023-08-04,2700.0000000,286017482,2023-07-30
14:16:36.750981+00,1406677101,257550,0
0,640725189,101742,203163,1,2023-08-05,2700.0000000,286017483,2023-07-30
14:16:36.750981+00,1407621363,257550,0
0,640725189,101742,203163,1,2023-08-06,2700.0000000,286017484,2023-07-30
14:16:36.750981+00,1408532966,257550,0
0,640725189,101742,203163,1,2023-08-07,2700.0000000,286017485,2023-07-30
14:16:36.750981+00,1409248611,257550,0
0,640725189,101742,203163,1,2023-08-08,2700.0000000,286017486,2023-07-30
14:16:36.750981+00,1409861546,257550,0
0,640725189,101742,203163,1,2023-08-09,2700.0000000,286017487,2023-07-30
14:16:36.750981+00,1410801637,257550,0
0,640725189,101742,203163,1,2023-08-10,2700.0000000,286017488,2023-07-30
14:16:36.750981+00,1411840671,257550,0
0,640725189,101742,203163,1,2023-08-11,2700.0000000,286017489,2023-07-30
14:16:36.750981+00,1412852354,257550,0
0,640725189,101742,203163,1,2023-08-12,2700.0000000,286017490,2023-07-30
14:16:36.750981+00,1413988755,257550,0
0,640725189,101742,203163,1,2023-08-13,2700.0000000,286017491,2023-07-30
14:16:36.750981+00,1414738233,257550,0
0,640725189,101742,203163,1,2023-08-14,2700.0000000,286017492,2023-07-30
14:16:36.750981+00,1415333532,257550,0
0,640725189,101742,203163,1,2023-08-15,2700.0000000,286017493,2023-07-30
14:16:36.750981+00,1415991454,257550,0
0,640725189,101742,203163,1,2023-08-16,2700.0000000,286017494,2023-07-30
14:16:36.750981+00,1417133229,257550,0
0,640725189,101742,203163,1,2023-08-17,2700.0000000,286017495,2023-07-30
14:16:36.750981+00,1417827139,257550,0
0,640725189,101742,203163,1,2023-08-18,2700.0000000,286017496,2023-07-30
14:16:36.750981+00,1418815182,257550,0
0,640725189,101742,203163,1,2023-08-19,2700.0000000,286017497,2023-07-30
14:16:36.750981+00,1420121236,257550,0
0,640725189,101742,203163,1,2023-08-20,2700.0000000,286017498,2023-07-30
14:16:36.750981+00,1421302951,257550,0
0,640725189,101742,203163,1,2023-08-21,2700.0000000,286017499,2023-07-30
14:16:36.750981+00,1421893783,257550,0
0,640725189,101742,203163,1,2023-08-22,2700.0000000,286017500,2023-07-30
14:16:36.750981+00,1422574736,257550,0
0,640725189,101742,203163,1,2023-08-23,2700.0000000,286017501,2023-07-30
14:16:36.750981+00,1423641864,257550,0
0,640725189,101742,203163,1,2023-08-24,2700.0000000,286017502,2023-07-30
14:16:36.750981+00,1425001752,257550,0
0,640725189,101742,203163,1,2023-08-25,2700.0000000,286017503,2023-07-30
14:16:36.750981+00,1426189082,257550,0
0,640725189,101742,203163,1,2023-08-26,2700.0000000,286017504,2023-07-30
14:16:36.750981+00,1426909542,257550,0
0,640725189,101742,203163,1,2023-08-27,2700.0000000,286017505,2023-07-30
14:16:36.750981+00,1427745853,257550,0
0,640725189,101742,203163,1,2023-08-28,2700.0000000,286017506,2023-07-30
14:16:36.750981+00,1428251161,257550,0
0,640725189,101742,203163,1,2023-08-29,2700.0000000,286017507,2023-07-30
14:16:36.750981+00,1429371327,257550,0
0,640725189,101742,203163,1,2023-08-30,2700.0000000,286017508,2023-07-30
14:16:36.750981+00,1430351705,257550,0
0,640725189,101742,203163,1,2023-08-31,2700.0000000,286017509,2023-07-30
14:16:36.750981+00,1431233924,257550,0
0,640725189,101742,549736,1,2023-08-01,2350.0000000,286017634,2023-07-30
14:16:36.750981+00,1403251631,257550,0
0,640725189,101742,549736,1,2023-08-02,2350.0000000,286017635,2023-07-30
14:16:36.750981+00,1404302253,257550,0
0,640725189,101742,549736,1,2023-08-03,2350.0000000,286017636,2023-07-30
14:16:36.750981+00,1405471669,257550,0
0,640725189,101742,549736,1,2023-08-04,2350.0000000,286017637,2023-07-30
14:16:36.750981+00,1406677108,257550,0
0,640725189,101742,549736,1,2023-08-05,2350.0000000,286017638,2023-07-30
14:16:36.750981+00,1407621370,257550,0
0,640725189,101742,549736,1,2023-08-06,2350.0000000,286017639,2023-07-30
14:16:36.750981+00,1408532973,257550,0
0,640725189,101742,549736,1,2023-08-07,2350.0000000,286017640,2023-07-30
14:16:36.750981+00,1409248618,257550,0
0,640725189,101742,549736,1,2023-08-08,2350.0000000,286017641,2023-07-30
14:16:36.750981+00,1409861553,257550,0
0,640725189,101742,549736,1,2023-08-09,2350.0000000,286017642,2023-07-30
14:16:36.750981+00,1410801644,257550,0
0,640725189,101742,549736,1,2023-08-10,2350.0000000,286017643,2023-07-30
14:16:36.750981+00,1411840678,257550,0
0,640725189,101742,549736,1,2023-08-11,2350.0000000,286017644,2023-07-30
14:16:36.750981+00,1412852362,257550,0
0,640725189,101742,549736,1,2023-08-12,2350.0000000,286017645,2023-07-30
14:16:36.750981+00,1413988762,257550,0
0,640725189,101742,549736,1,2023-08-13,2350.0000000,286017646,2023-07-30
14:16:36.750981+00,1414738251,257550,0
0,640725189,101742,549736,1,2023-08-14,2350.0000000,286017647,2023-07-30
14:16:36.750981+00,1415333539,257550,0
0,640725189,101742,549736,1,2023-08-15,2350.0000000,286017648,2023-07-30
14:16:36.750981+00,1415991461,257550,0
0,640725189,101742,549736,1,2023-08-16,2350.0000000,286017649,2023-07-30
14:16:36.750981+00,1417133255,257550,0
0,640725189,101742,549736,1,2023-08-17,2350.0000000,286017650,2023-07-30
14:16:36.750981+00,1417827146,257550,0
0,640725189,101742,549736,1,2023-08-18,2350.0000000,286017651,2023-07-30
14:16:36.750981+00,1418815189,257550,0
0,640725189,101742,549736,1,2023-08-19,2350.0000000,286017652,2023-07-30
14:16:36.750981+00,1420121243,257550,0
0,640725189,101742,549736,1,2023-08-20,2350.0000000,286017653,2023-07-30
14:16:36.750981+00,1421302958,257550,0
0,640725189,101742,549736,1,2023-08-21,2350.0000000,286017654,2023-07-30
14:16:36.750981+00,1421893790,257550,0
0,640725189,101742,549736,1,2023-08-22,2350.0000000,286017655,2023-07-30
14:16:36.750981+00,1422574743,257550,0
0,640725189,101742,549736,1,2023-08-23,2350.0000000,286017656,2023-07-30
14:16:36.750981+00,1423641871,257550,0
0,640725189,101742,549736,1,2023-08-24,2350.0000000,286017657,2023-07-30
14:16:36.750981+00,1425001759,257550,0
0,640725189,101742,549736,1,2023-08-25,2350.0000000,286017658,2023-07-30
14:16:36.750981+00,1426189089,257550,0
0,640725189,101742,549736,1,2023-08-26,2350.0000000,286017659,2023-07-30
14:16:36.750981+00,1426909549,257550,0
0,640725189,101742,549736,1,2023-08-27,2350.0000000,286017660,2023-07-30
14:16:36.750981+00,1427745860,257550,0
0,640725189,101742,549736,1,2023-08-28,2350.0000000,286017661,2023-07-30
14:16:36.750981+00,1428251168,257550,0
0,640725189,101742,549736,1,2023-08-29,2350.0000000,286017662,2023-07-30
14:16:36.750981+00,1429371334,257550,0
0,640725189,101742,549736,1,2023-08-30,2350.0000000,286017663,2023-07-30
14:16:36.750981+00,1430351712,257550,0
0,640725189,101742,549736,1,2023-08-31,2350.0000000,286017664,2023-07-30
14:16:36.750981+00,1431233931,257550,0
0,640725189,101743,203164,1,2023-08-01,3350.0000000,286017789,2023-07-30
14:16:36.750981+00,1403251618,257551,0
0,640725189,101743,203164,1,2023-08-02,3350.0000000,286017790,2023-07-30
14:16:36.750981+00,1404302247,257551,0
0,640725189,101743,203164,1,2023-08-03,3350.0000000,286017791,2023-07-30
14:16:36.750981+00,1405471663,257551,0
0,640725189,101743,203164,1,2023-08-04,3350.0000000,286017792,2023-07-30
14:16:36.750981+00,1406677102,257551,0
0,640725189,101743,203164,1,2023-08-05,3350.0000000,286017793,2023-07-30
14:16:36.750981+00,1407621364,257551,0
0,640725189,101743,203164,1,2023-08-06,3350.0000000,286017794,2023-07-30
14:16:36.750981+00,1408532967,257551,0
0,640725189,101743,203164,1,2023-08-07,3350.0000000,286017795,2023-07-30
14:16:36.750981+00,1409248612,257551,0
0,640725189,101743,203164,1,2023-08-08,3350.0000000,286017796,2023-07-30
14:16:36.750981+00,1409861547,257551,0
0,640725189,101743,203164,1,2023-08-09,3350.0000000,286017797,2023-07-30
14:16:36.750981+00,1410801638,257551,0
0,640725189,101743,203164,1,2023-08-10,3350.0000000,286017798,2023-07-30
14:16:36.750981+00,1411840672,257551,0
0,640725189,101743,203164,1,2023-08-11,3350.0000000,286017799,2023-07-30
14:16:36.750981+00,1412852355,257551,0
0,640725189,101743,203164,1,2023-08-12,3350.0000000,286017800,2023-07-30
14:16:36.750981+00,1413988756,257551,0
0,640725189,101743,203164,1,2023-08-13,3350.0000000,286017801,2023-07-30
14:16:36.750981+00,1414738235,257551,0
0,640725189,101743,203164,1,2023-08-14,3350.0000000,286017802,2023-07-30
14:16:36.750981+00,1415333533,257551,0
0,640725189,101743,203164,1,2023-08-15,3350.0000000,286017803,2023-07-30
14:16:36.750981+00,1415991455,257551,0
0,640725189,101743,203164,1,2023-08-16,3350.0000000,286017804,2023-07-30
14:16:36.750981+00,1417133235,257551,0
0,640725189,101743,203164,1,2023-08-17,3350.0000000,286017805,2023-07-30
14:16:36.750981+00,1417827140,257551,0
0,640725189,101743,203164,1,2023-08-18,3350.0000000,286017806,2023-07-30
14:16:36.750981+00,1418815183,257551,0
0,640725189,101743,203164,1,2023-08-19,3350.0000000,286017807,2023-07-30
14:16:36.750981+00,1420121237,257551,0
0,640725189,101743,203164,1,2023-08-20,3350.0000000,286017808,2023-07-30
14:16:36.750981+00,1421302952,257551,0
0,640725189,101743,203164,1,2023-08-21,3350.0000000,286017809,2023-07-30
14:16:36.750981+00,1421893784,257551,0
0,640725189,101743,203164,1,2023-08-22,3350.0000000,286017810,2023-07-30
14:16:36.750981+00,1422574737,257551,0
0,640725189,101743,203164,1,2023-08-23,3350.0000000,286017811,2023-07-30
14:16:36.750981+00,1423641865,257551,0
0,640725189,101743,203164,1,2023-08-24,3350.0000000,286017812,2023-07-30
14:16:36.750981+00,1425001753,257551,0
0,640725189,101743,203164,1,2023-08-25,3350.0000000,286017813,2023-07-30
14:16:36.750981+00,1426189083,257551,0
0,640725189,101743,203164,1,2023-08-26,3350.0000000,286017814,2023-07-30
14:16:36.750981+00,1426909543,257551,0
0,640725189,101743,203164,1,2023-08-27,3350.0000000,286017815,2023-07-30
14:16:36.750981+00,1427745854,257551,0
0,640725189,101743,203164,1,2023-08-28,3350.0000000,286017816,2023-07-30
14:16:36.750981+00,1428251162,257551,0
0,640725189,101743,203164,1,2023-08-29,3350.0000000,286017817,2023-07-30
14:16:36.750981+00,1429371328,257551,0
0,640725189,101743,203164,1,2023-08-30,3350.0000000,286017818,2023-07-30
14:16:36.750981+00,1430351706,257551,0
0,640725189,101743,203164,1,2023-08-31,3350.0000000,286017819,2023-07-30
14:16:36.750981+00,1431233925,257551,0
0,640725189,101743,549737,1,2023-08-01,3000.0000000,286017944,2023-07-30
14:16:36.750981+00,1403251632,257551,0
0,640725189,101743,549737,1,2023-08-02,3000.0000000,286017945,2023-07-30
14:16:36.750981+00,1404302254,257551,0
0,640725189,101743,549737,1,2023-08-03,3000.0000000,286017946,2023-07-30
14:16:36.750981+00,1405471670,257551,0
0,640725189,101743,549737,1,2023-08-04,3000.0000000,286017947,2023-07-30
14:16:36.750981+00,1406677109,257551,0
0,640725189,101743,549737,1,2023-08-05,3000.0000000,286017948,2023-07-30
14:16:36.750981+00,1407621371,257551,0
0,640725189,101743,549737,1,2023-08-06,3000.0000000,286017949,2023-07-30
14:16:36.750981+00,1408532974,257551,0
0,640725189,101743,549737,1,2023-08-07,3000.0000000,286017950,2023-07-30
14:16:36.750981+00,1409248619,257551,0
0,640725189,101743,549737,1,2023-08-08,3000.0000000,286017951,2023-07-30
14:16:36.750981+00,1409861554,257551,0
0,640725189,101743,549737,1,2023-08-09,3000.0000000,286017952,2023-07-30
14:16:36.750981+00,1410801645,257551,0
0,640725189,101743,549737,1,2023-08-10,3000.0000000,286017953,2023-07-30
14:16:36.750981+00,1411840679,257551,0
0,640725189,101743,549737,1,2023-08-11,3000.0000000,286017954,2023-07-30
14:16:36.750981+00,1412852363,257551,0
0,640725189,101743,549737,1,2023-08-12,3000.0000000,286017955,2023-07-30
14:16:36.750981+00,1413988763,257551,0
0,640725189,101743,549737,1,2023-08-13,3000.0000000,286017956,2023-07-30
14:16:36.750981+00,1414738253,257551,0
0,640725189,101743,549737,1,2023-08-14,3000.0000000,286017957,2023-07-30
14:16:36.750981+00,1415333540,257551,0
0,640725189,101743,549737,1,2023-08-15,3000.0000000,286017958,2023-07-30
14:16:36.750981+00,1415991462,257551,0
0,640725189,101743,549737,1,2023-08-16,3000.0000000,286017959,2023-07-30
14:16:36.750981+00,1417133258,257551,0
0,640725189,101743,549737,1,2023-08-17,3000.0000000,286017960,2023-07-30
14:16:36.750981+00,1417827147,257551,0
0,640725189,101743,549737,1,2023-08-18,3000.0000000,286017961,2023-07-30
14:16:36.750981+00,1418815190,257551,0
0,640725189,101743,549737,1,2023-08-19,3000.0000000,286017962,2023-07-30
14:16:36.750981+00,1420121244,257551,0
0,640725189,101743,549737,1,2023-08-20,3000.0000000,286017963,2023-07-30
14:16:36.750981+00,1421302959,257551,0
0,640725189,101743,549737,1,2023-08-21,3000.0000000,286017964,2023-07-30
14:16:36.750981+00,1421893791,257551,0
0,640725189,101743,549737,1,2023-08-22,3000.0000000,286017965,2023-07-30
14:16:36.750981+00,1422574744,257551,0
0,640725189,101743,549737,1,2023-08-23,3000.0000000,286017966,2023-07-30
14:16:36.750981+00,1423641872,257551,0
0,640725189,101743,549737,1,2023-08-24,3000.0000000,286017967,2023-07-30
14:16:36.750981+00,1425001760,257551,0
0,640725189,101743,549737,1,2023-08-25,3000.0000000,286017968,2023-07-30
14:16:36.750981+00,1426189090,257551,0
0,640725189,101743,549737,1,2023-08-26,3000.0000000,286017969,2023-07-30
14:16:36.750981+00,1426909550,257551,0
0,640725189,101743,549737,1,2023-08-27,3000.0000000,286017970,2023-07-30
14:16:36.750981+00,1427745861,257551,0
0,640725189,101743,549737,1,2023-08-28,3000.0000000,286017971,2023-07-30
14:16:36.750981+00,1428251169,257551,0
0,640725189,101743,549737,1,2023-08-29,3000.0000000,286017972,2023-07-30
14:16:36.750981+00,1429371335,257551,0
0,640725189,101743,549737,1,2023-08-30,3000.0000000,286017973,2023-07-30
14:16:36.750981+00,1430351713,257551,0
0,640725189,101743,549737,1,2023-08-31,3000.0000000,286017974,2023-07-30
14:16:36.750981+00,1431233932,257551,0
0,640725189,101744,203165,2,2023-08-01,3950.0000000,286018099,2023-07-30
14:16:36.750981+00,1403251621,257553,0
0,640725189,101744,203165,2,2023-08-02,3950.0000000,286018100,2023-07-30
14:16:36.750981+00,1404302248,257553,0
0,640725189,101744,203165,2,2023-08-03,3950.0000000,286018101,2023-07-30
14:16:36.750981+00,1405471664,257553,0
0,640725189,101744,203165,2,2023-08-04,3950.0000000,286018102,2023-07-30
14:16:36.750981+00,1406677103,257553,0
0,640725189,101744,203165,2,2023-08-05,3950.0000000,286018103,2023-07-30
14:16:36.750981+00,1407621365,257553,0
0,640725189,101744,203165,2,2023-08-06,3950.0000000,286018104,2023-07-30
14:16:36.750981+00,1408532968,257553,0
0,640725189,101744,203165,2,2023-08-07,3950.0000000,286018105,2023-07-30
14:16:36.750981+00,1409248613,257553,0
0,640725189,101744,203165,2,2023-08-08,3950.0000000,286018106,2023-07-30
14:16:36.750981+00,1409861548,257553,0
0,640725189,101744,203165,2,2023-08-09,3950.0000000,286018107,2023-07-30
14:16:36.750981+00,1410801639,257553,0
0,640725189,101744,203165,2,2023-08-10,3950.0000000,286018108,2023-07-30
14:16:36.750981+00,1411840673,257553,0
0,640725189,101744,203165,2,2023-08-11,3950.0000000,286018109,2023-07-30
14:16:36.750981+00,1412852356,257553,0
0,640725189,101744,203165,2,2023-08-12,3950.0000000,286018110,2023-07-30
14:16:36.750981+00,1413988757,257553,0
0,640725189,101744,203165,2,2023-08-13,3950.0000000,286018111,2023-07-30
14:16:36.750981+00,1414738238,257553,0
0,640725189,101744,203165,2,2023-08-14,3950.0000000,286018112,2023-07-30
14:16:36.750981+00,1415333534,257553,0
0,640725189,101744,203165,2,2023-08-15,3950.0000000,286018113,2023-07-30
14:16:36.750981+00,1415991456,257553,0
0,640725189,101744,203165,2,2023-08-16,3950.0000000,286018114,2023-07-30
14:16:36.750981+00,1417133238,257553,0
0,640725189,101744,203165,2,2023-08-17,3950.0000000,286018115,2023-07-30
14:16:36.750981+00,1417827141,257553,0
0,640725189,101744,203165,2,2023-08-18,3950.0000000,286018116,2023-07-30
14:16:36.750981+00,1418815184,257553,0
0,640725189,101744,203165,2,2023-08-19,3950.0000000,286018117,2023-07-30
14:16:36.750981+00,1420121238,257553,0
0,640725189,101744,203165,2,2023-08-20,3950.0000000,286018118,2023-07-30
14:16:36.750981+00,1421302953,257553,0
0,640725189,101744,203165,2,2023-08-21,3950.0000000,286018119,2023-07-30
14:16:36.750981+00,1421893785,257553,0
0,640725189,101744,203165,2,2023-08-22,3950.0000000,286018120,2023-07-30
14:16:36.750981+00,1422574738,257553,0
0,640725189,101744,203165,2,2023-08-23,3950.0000000,286018121,2023-07-30
14:16:36.750981+00,1423641866,257553,0
0,640725189,101744,203165,2,2023-08-24,3950.0000000,286018122,2023-07-30
14:16:36.750981+00,1425001754,257553,0
0,640725189,101744,203165,2,2023-08-25,3950.0000000,286018123,2023-07-30
14:16:36.750981+00,1426189084,257553,0
0,640725189,101744,203165,2,2023-08-26,3950.0000000,286018124,2023-07-30
14:16:36.750981+00,1426909544,257553,0
0,640725189,101744,203165,2,2023-08-27,3950.0000000,286018125,2023-07-30
14:16:36.750981+00,1427745855,257553,0
0,640725189,101744,203165,2,2023-08-28,3950.0000000,286018126,2023-07-30
14:16:36.750981+00,1428251163,257553,0
0,640725189,101744,203165,2,2023-08-29,3950.0000000,286018127,2023-07-30
14:16:36.750981+00,1429371329,257553,0
0,640725189,101744,203165,2,2023-08-30,3950.0000000,286018128,2023-07-30
14:16:36.750981+00,1430351707,257553,0
0,640725189,101744,203165,2,2023-08-31,3950.0000000,286018129,2023-07-30
14:16:36.750981+00,1431233926,257553,0
0,640725189,101744,549738,2,2023-08-01,3250.0000000,286018254,2023-07-30
14:16:36.750981+00,1403251633,257553,0
0,640725189,101744,549738,2,2023-08-02,3250.0000000,286018255,2023-07-30
14:16:36.750981+00,1404302255,257553,0
0,640725189,101744,549738,2,2023-08-03,3250.0000000,286018256,2023-07-30
14:16:36.750981+00,1405471671,257553,0
0,640725189,101744,549738,2,2023-08-04,3250.0000000,286018257,2023-07-30
14:16:36.750981+00,1406677110,257553,0
0,640725189,101744,549738,2,2023-08-05,3250.0000000,286018258,2023-07-30
14:16:36.750981+00,1407621372,257553,0
0,640725189,101744,549738,2,2023-08-06,3250.0000000,286018259,2023-07-30
14:16:36.750981+00,1408532975,257553,0
0,640725189,101744,549738,2,2023-08-07,3250.0000000,286018260,2023-07-30
14:16:36.750981+00,1409248620,257553,0
0,640725189,101744,549738,2,2023-08-08,3250.0000000,286018261,2023-07-30
14:16:36.750981+00,1409861555,257553,0
0,640725189,101744,549738,2,2023-08-09,3250.0000000,286018262,2023-07-30
14:16:36.750981+00,1410801646,257553,0
0,640725189,101744,549738,2,2023-08-10,3250.0000000,286018263,2023-07-30
14:16:36.750981+00,1411840680,257553,0
0,640725189,101744,549738,2,2023-08-11,3250.0000000,286018264,2023-07-30
14:16:36.750981+00,1412852365,257553,0
0,640725189,101744,549738,2,2023-08-12,3250.0000000,286018265,2023-07-30
14:16:36.750981+00,1413988764,257553,0
0,640725189,101744,549738,2,2023-08-13,3250.0000000,286018266,2023-07-30
14:16:36.750981+00,1414738255,257553,0
0,640725189,101744,549738,2,2023-08-14,3250.0000000,286018267,2023-07-30
14:16:36.750981+00,1415333541,257553,0
0,640725189,101744,549738,2,2023-08-15,3250.0000000,286018268,2023-07-30
14:16:36.750981+00,1415991463,257553,0
0,640725189,101744,549738,2,2023-08-16,3250.0000000,286018269,2023-07-30
14:16:36.750981+00,1417133261,257553,0
0,640725189,101744,549738,2,2023-08-17,3250.0000000,286018270,2023-07-30
14:16:36.750981+00,1417827148,257553,0
0,640725189,101744,549738,2,2023-08-18,3250.0000000,286018271,2023-07-30
14:16:36.750981+00,1418815191,257553,0
0,640725189,101744,549738,2,2023-08-19,3250.0000000,286018272,2023-07-30
14:16:36.750981+00,1420121245,257553,0
0,640725189,101744,549738,2,2023-08-20,3250.0000000,286018273,2023-07-30
14:16:36.750981+00,1421302960,257553,0
0,640725189,101744,549738,2,2023-08-21,3250.0000000,286018274,2023-07-30
14:16:36.750981+00,1421893792,257553,0
0,640725189,101744,549738,2,2023-08-22,3250.0000000,286018275,2023-07-30
14:16:36.750981+00,1422574745,257553,0
0,640725189,101744,549738,2,2023-08-23,3250.0000000,286018276,2023-07-30
14:16:36.750981+00,1423641873,257553,0
0,640725189,101744,549738,2,2023-08-24,3250.0000000,286018277,2023-07-30
14:16:36.750981+00,1425001761,257553,0
0,640725189,101744,549738,2,2023-08-25,3250.0000000,286018278,2023-07-30
14:16:36.750981+00,1426189091,257553,0
0,640725189,101744,549738,2,2023-08-26,3250.0000000,286018279,2023-07-30
14:16:36.750981+00,1426909551,257553,0
0,640725189,101744,549738,2,2023-08-27,3250.0000000,286018280,2023-07-30
14:16:36.750981+00,1427745862,257553,0
0,640725189,101744,549738,2,2023-08-28,3250.0000000,286018281,2023-07-30
14:16:36.750981+00,1428251170,257553,0
0,640725189,101744,549738,2,2023-08-29,3250.0000000,286018282,2023-07-30
14:16:36.750981+00,1429371336,257553,0
0,640725189,101744,549738,2,2023-08-30,3250.0000000,286018283,2023-07-30
14:16:36.750981+00,1430351714,257553,0
0,640725189,101744,549738,2,2023-08-31,3250.0000000,286018284,2023-07-30
14:16:36.750981+00,1431233933,257553,0
0,640725189,101745,203166,1,2023-08-01,3650.0000000,286018409,2023-07-30
14:16:36.750981+00,1403251623,257557,0
0,640725189,101745,203166,1,2023-08-02,3650.0000000,286018410,2023-07-30
14:16:36.750981+00,1404302249,257557,0
0,640725189,101745,203166,1,2023-08-03,3650.0000000,286018411,2023-07-30
14:16:36.750981+00,1405471665,257557,0
0,640725189,101745,203166,1,2023-08-04,3650.0000000,286018412,2023-07-30
14:16:36.750981+00,1406677104,257557,0
0,640725189,101745,203166,1,2023-08-05,3650.0000000,286018413,2023-07-30
14:16:36.750981+00,1407621366,257557,0
0,640725189,101745,203166,1,2023-08-06,3650.0000000,286018414,2023-07-30
14:16:36.750981+00,1408532969,257557,0
0,640725189,101745,203166,1,2023-08-07,3650.0000000,286018415,2023-07-30
14:16:36.750981+00,1409248614,257557,0
0,640725189,101745,203166,1,2023-08-08,3650.0000000,286018416,2023-07-30
14:16:36.750981+00,1409861549,257557,0
0,640725189,101745,203166,1,2023-08-09,3650.0000000,286018417,2023-07-30
14:16:36.750981+00,1410801640,257557,0
0,640725189,101745,203166,1,2023-08-10,3650.0000000,286018418,2023-07-30
14:16:36.750981+00,1411840674,257557,0
0,640725189,101745,203166,1,2023-08-11,3650.0000000,286018419,2023-07-30
14:16:36.750981+00,1412852357,257557,0
0,640725189,101745,203166,1,2023-08-12,3650.0000000,286018420,2023-07-30
14:16:36.750981+00,1413988758,257557,0
0,640725189,101745,203166,1,2023-08-13,3650.0000000,286018421,2023-07-30
14:16:36.750981+00,1414738241,257557,0
0,640725189,101745,203166,1,2023-08-14,3650.0000000,286018422,2023-07-30
14:16:36.750981+00,1415333535,257557,0
0,640725189,101745,203166,1,2023-08-15,3650.0000000,286018423,2023-07-30
14:16:36.750981+00,1415991457,257557,0
0,640725189,101745,203166,1,2023-08-16,3650.0000000,286018424,2023-07-30
14:16:36.750981+00,1417133242,257557,0
0,640725189,101745,203166,1,2023-08-17,3650.0000000,286018425,2023-07-30
14:16:36.750981+00,1417827142,257557,0
0,640725189,101745,203166,1,2023-08-18,3650.0000000,286018426,2023-07-30
14:16:36.750981+00,1418815185,257557,0
0,640725189,101745,203166,1,2023-08-19,3650.0000000,286018427,2023-07-30
14:16:36.750981+00,1420121239,257557,0
0,640725189,101745,203166,1,2023-08-20,3650.0000000,286018428,2023-07-30
14:16:36.750981+00,1421302954,257557,0
0,640725189,101745,203166,1,2023-08-21,3650.0000000,286018429,2023-07-30
14:16:36.750981+00,1421893786,257557,0
0,640725189,101745,203166,1,2023-08-22,3650.0000000,286018430,2023-07-30
14:16:36.750981+00,1422574739,257557,0
0,640725189,101745,203166,1,2023-08-23,3650.0000000,286018431,2023-07-30
14:16:36.750981+00,1423641867,257557,0
0,640725189,101745,203166,1,2023-08-24,3650.0000000,286018432,2023-07-30
14:16:36.750981+00,1425001755,257557,0
0,640725189,101745,203166,1,2023-08-25,3650.0000000,286018433,2023-07-30
14:16:36.750981+00,1426189085,257557,0
0,640725189,101745,203166,1,2023-08-26,3650.0000000,286018434,2023-07-30
14:16:36.750981+00,1426909545,257557,0
0,640725189,101745,203166,1,2023-08-27,3650.0000000,286018435,2023-07-30
14:16:36.750981+00,1427745856,257557,0
0,640725189,101745,203166,1,2023-08-28,3650.0000000,286018436,2023-07-30
14:16:36.750981+00,1428251164,257557,0
0,640725189,101745,203166,1,2023-08-29,3650.0000000,286018437,2023-07-30
14:16:36.750981+00,1429371330,257557,0
0,640725189,101745,203166,1,2023-08-30,3650.0000000,286018438,2023-07-30
14:16:36.750981+00,1430351708,257557,0
0,640725189,101745,203166,1,2023-08-31,3650.0000000,286018439,2023-07-30
14:16:36.750981+00,1431233927,257557,0
0,640725189,101745,203166,2,2023-08-01,4400.0000000,286018564,2023-07-30
14:16:36.750981+00,1403251627,257558,0
0,640725189,101745,203166,2,2023-08-02,4400.0000000,286018565,2023-07-30
14:16:36.750981+00,1404302250,257558,0
0,640725189,101745,203166,2,2023-08-03,4400.0000000,286018566,2023-07-30
14:16:36.750981+00,1405471666,257558,0
0,640725189,101745,203166,2,2023-08-04,4400.0000000,286018567,2023-07-30
14:16:36.750981+00,1406677105,257558,0
0,640725189,101745,203166,2,2023-08-05,4400.0000000,286018568,2023-07-30
14:16:36.750981+00,1407621367,257558,0
0,640725189,101745,203166,2,2023-08-06,4400.0000000,286018569,2023-07-30
14:16:36.750981+00,1408532970,257558,0
0,640725189,101745,203166,2,2023-08-07,4400.0000000,286018570,2023-07-30
14:16:36.750981+00,1409248615,257558,0
0,640725189,101745,203166,2,2023-08-08,4400.0000000,286018571,2023-07-30
14:16:36.750981+00,1409861550,257558,0
0,640725189,101745,203166,2,2023-08-09,4400.0000000,286018572,2023-07-30
14:16:36.750981+00,1410801641,257558,0
0,640725189,101745,203166,2,2023-08-10,4400.0000000,286018573,2023-07-30
14:16:36.750981+00,1411840675,257558,0
0,640725189,101745,203166,2,2023-08-11,4400.0000000,286018574,2023-07-30
14:16:36.750981+00,1412852358,257558,0
0,640725189,101745,203166,2,2023-08-12,4400.0000000,286018575,2023-07-30
14:16:36.750981+00,1413988759,257558,0
0,640725189,101745,203166,2,2023-08-13,4400.0000000,286018576,2023-07-30
14:16:36.750981+00,1414738244,257558,0
0,640725189,101745,203166,2,2023-08-14,4400.0000000,286018577,2023-07-30
14:16:36.750981+00,1415333536,257558,0
0,640725189,101745,203166,2,2023-08-15,4400.0000000,286018578,2023-07-30
14:16:36.750981+00,1415991458,257558,0
0,640725189,101745,203166,2,2023-08-16,4400.0000000,286018579,2023-07-30
14:16:36.750981+00,1417133246,257558,0
0,640725189,101745,203166,2,2023-08-17,4400.0000000,286018580,2023-07-30
14:16:36.750981+00,1417827143,257558,0
0,640725189,101745,203166,2,2023-08-18,4400.0000000,286018581,2023-07-30
14:16:36.750981+00,1418815186,257558,0
0,640725189,101745,203166,2,2023-08-19,4400.0000000,286018582,2023-07-30
14:16:36.750981+00,1420121240,257558,0
0,640725189,101745,203166,2,2023-08-20,4400.0000000,286018583,2023-07-30
14:16:36.750981+00,1421302955,257558,0
0,640725189,101745,203166,2,2023-08-21,4400.0000000,286018584,2023-07-30
14:16:36.750981+00,1421893787,257558,0
0,640725189,101745,203166,2,2023-08-22,4400.0000000,286018585,2023-07-30
14:16:36.750981+00,1422574740,257558,0
0,640725189,101745,203166,2,2023-08-23,4400.0000000,286018586,2023-07-30
14:16:36.750981+00,1423641868,257558,0
0,640725189,101745,203166,2,2023-08-24,4400.0000000,286018587,2023-07-30
14:16:36.750981+00,1425001756,257558,0
0,640725189,101745,203166,2,2023-08-25,4400.0000000,286018588,2023-07-30
14:16:36.750981+00,1426189086,257558,0
0,640725189,101745,203166,2,2023-08-26,4400.0000000,286018589,2023-07-30
14:16:36.750981+00,1426909546,257558,0
0,640725189,101745,203166,2,2023-08-27,4400.0000000,286018590,2023-07-30
14:16:36.750981+00,1427745857,257558,0
0,640725189,101745,203166,2,2023-08-28,4400.0000000,286018591,2023-07-30
14:16:36.750981+00,1428251165,257558,0
0,640725189,101745,203166,2,2023-08-29,4400.0000000,286018592,2023-07-30
14:16:36.750981+00,1429371331,257558,0
0,640725189,101745,203166,2,2023-08-30,4400.0000000,286018593,2023-07-30
14:16:36.750981+00,1430351709,257558,0
0,640725189,101745,203166,2,2023-08-31,4400.0000000,286018594,2023-07-30
14:16:36.750981+00,1431233928,257558,0
0,640725189,101745,549739,1,2023-08-01,3300.0000000,286018719,2023-07-30
14:16:36.750981+00,1403251635,257557,0
0,640725189,101745,549739,1,2023-08-02,3300.0000000,286018720,2023-07-30
14:16:36.750981+00,1404302257,257557,0
0,640725189,101745,549739,1,2023-08-03,3300.0000000,286018721,2023-07-30
14:16:36.750981+00,1405471673,257557,0
0,640725189,101745,549739,1,2023-08-04,3300.0000000,286018722,2023-07-30
14:16:36.750981+00,1406677112,257557,0
0,640725189,101745,549739,1,2023-08-05,3300.0000000,286018723,2023-07-30
14:16:36.750981+00,1407621374,257557,0
0,640725189,101745,549739,1,2023-08-06,3300.0000000,286018724,2023-07-30
14:16:36.750981+00,1408532977,257557,0
0,640725189,101745,549739,1,2023-08-07,3300.0000000,286018725,2023-07-30
14:16:36.750981+00,1409248622,257557,0
0,640725189,101745,549739,1,2023-08-08,3300.0000000,286018726,2023-07-30
14:16:36.750981+00,1409861557,257557,0
0,640725189,101745,549739,1,2023-08-09,3300.0000000,286018727,2023-07-30
14:16:36.750981+00,1410801648,257557,0
0,640725189,101745,549739,1,2023-08-10,3300.0000000,286018728,2023-07-30
14:16:36.750981+00,1411840682,257557,0
0,640725189,101745,549739,1,2023-08-11,3300.0000000,286018729,2023-07-30
14:16:36.750981+00,1412852368,257557,0
0,640725189,101745,549739,1,2023-08-12,3300.0000000,286018730,2023-07-30
14:16:36.750981+00,1413988766,257557,0
0,640725189,101745,549739,1,2023-08-13,3300.0000000,286018731,2023-07-30
14:16:36.750981+00,1414738261,257557,0
0,640725189,101745,549739,1,2023-08-14,3300.0000000,286018732,2023-07-30
14:16:36.750981+00,1415333543,257557,0
0,640725189,101745,549739,1,2023-08-15,3300.0000000,286018733,2023-07-30
14:16:36.750981+00,1415991465,257557,0
0,640725189,101745,549739,1,2023-08-16,3300.0000000,286018734,2023-07-30
14:16:36.750981+00,1417133267,257557,0
0,640725189,101745,549739,1,2023-08-17,3300.0000000,286018735,2023-07-30
14:16:36.750981+00,1417827150,257557,0
0,640725189,101745,549739,1,2023-08-18,3300.0000000,286018736,2023-07-30
14:16:36.750981+00,1418815193,257557,0
0,640725189,101745,549739,1,2023-08-19,3300.0000000,286018737,2023-07-30
14:16:36.750981+00,1420121247,257557,0
0,640725189,101745,549739,1,2023-08-20,3300.0000000,286018738,2023-07-30
14:16:36.750981+00,1421302962,257557,0
0,640725189,101745,549739,1,2023-08-21,3300.0000000,286018739,2023-07-30
14:16:36.750981+00,1421893794,257557,0
0,640725189,101745,549739,1,2023-08-22,3300.0000000,286018740,2023-07-30
14:16:36.750981+00,1422574747,257557,0
0,640725189,101745,549739,1,2023-08-23,3300.0000000,286018741,2023-07-30
14:16:36.750981+00,1423641875,257557,0
0,640725189,101745,549739,1,2023-08-24,3300.0000000,286018742,2023-07-30
14:16:36.750981+00,1425001763,257557,0
0,640725189,101745,549739,1,2023-08-25,3300.0000000,286018743,2023-07-30
14:16:36.750981+00,1426189093,257557,0
0,640725189,101745,549739,1,2023-08-26,3300.0000000,286018744,2023-07-30
14:16:36.750981+00,1426909553,257557,0
0,640725189,101745,549739,1,2023-08-27,3300.0000000,286018745,2023-07-30
14:16:36.750981+00,1427745864,257557,0
0,640725189,101745,549739,1,2023-08-28,3300.0000000,286018746,2023-07-30
14:16:36.750981+00,1428251172,257557,0
0,640725189,101745,549739,1,2023-08-29,3300.0000000,286018747,2023-07-30
14:16:36.750981+00,1429371338,257557,0
0,640725189,101745,549739,1,2023-08-30,3300.0000000,286018748,2023-07-30
14:16:36.750981+00,1430351716,257557,0
0,640725189,101745,549739,1,2023-08-31,3300.0000000,286018749,2023-07-30
14:16:36.750981+00,1431233935,257557,0
0,640725189,101745,549739,2,2023-08-01,3700.0000000,286018874,2023-07-30
14:16:36.750981+00,1403251634,257558,0
0,640725189,101745,549739,2,2023-08-02,3700.0000000,286018875,2023-07-30
14:16:36.750981+00,1404302256,257558,0
0,640725189,101745,549739,2,2023-08-03,3700.0000000,286018876,2023-07-30
14:16:36.750981+00,1405471672,257558,0
0,640725189,101745,549739,2,2023-08-04,3700.0000000,286018877,2023-07-30
14:16:36.750981+00,1406677111,257558,0
0,640725189,101745,549739,2,2023-08-05,3700.0000000,286018878,2023-07-30
14:16:36.750981+00,1407621373,257558,0
0,640725189,101745,549739,2,2023-08-06,3700.0000000,286018879,2023-07-30
14:16:36.750981+00,1408532976,257558,0
0,640725189,101745,549739,2,2023-08-07,3700.0000000,286018880,2023-07-30
14:16:36.750981+00,1409248621,257558,0
0,640725189,101745,549739,2,2023-08-08,3700.0000000,286018881,2023-07-30
14:16:36.750981+00,1409861556,257558,0
0,640725189,101745,549739,2,2023-08-09,3700.0000000,286018882,2023-07-30
14:16:36.750981+00,1410801647,257558,0
0,640725189,101745,549739,2,2023-08-10,3700.0000000,286018883,2023-07-30
14:16:36.750981+00,1411840681,257558,0
0,640725189,101745,549739,2,2023-08-11,3700.0000000,286018884,2023-07-30
14:16:36.750981+00,1412852367,257558,0
0,640725189,101745,549739,2,2023-08-12,3700.0000000,286018885,2023-07-30
14:16:36.750981+00,1413988765,257558,0
0,640725189,101745,549739,2,2023-08-13,3700.0000000,286018886,2023-07-30
14:16:36.750981+00,1414738258,257558,0
0,640725189,101745,549739,2,2023-08-14,3700.0000000,286018887,2023-07-30
14:16:36.750981+00,1415333542,257558,0
0,640725189,101745,549739,2,2023-08-15,3700.0000000,286018888,2023-07-30
14:16:36.750981+00,1415991464,257558,0
0,640725189,101745,549739,2,2023-08-16,3700.0000000,286018889,2023-07-30
14:16:36.750981+00,1417133264,257558,0
0,640725189,101745,549739,2,2023-08-17,3700.0000000,286018890,2023-07-30
14:16:36.750981+00,1417827149,257558,0
0,640725189,101745,549739,2,2023-08-18,3700.0000000,286018891,2023-07-30
14:16:36.750981+00,1418815192,257558,0
0,640725189,101745,549739,2,2023-08-19,3700.0000000,286018892,2023-07-30
14:16:36.750981+00,1420121246,257558,0
0,640725189,101745,549739,2,2023-08-20,3700.0000000,286018893,2023-07-30
14:16:36.750981+00,1421302961,257558,0
0,640725189,101745,549739,2,2023-08-21,3700.0000000,286018894,2023-07-30
14:16:36.750981+00,1421893793,257558,0
0,640725189,101745,549739,2,2023-08-22,3700.0000000,286018895,2023-07-30
14:16:36.750981+00,1422574746,257558,0
0,640725189,101745,549739,2,2023-08-23,3700.0000000,286018896,2023-07-30
14:16:36.750981+00,1423641874,257558,0
0,640725189,101745,549739,2,2023-08-24,3700.0000000,286018897,2023-07-30
14:16:36.750981+00,1425001762,257558,0
0,640725189,101745,549739,2,2023-08-25,3700.0000000,286018898,2023-07-30
14:16:36.750981+00,1426189092,257558,0
0,640725189,101745,549739,2,2023-08-26,3700.0000000,286018899,2023-07-30
14:16:36.750981+00,1426909552,257558,0
0,640725189,101745,549739,2,2023-08-27,3700.0000000,286018900,2023-07-30
14:16:36.750981+00,1427745863,257558,0
0,640725189,101745,549739,2,2023-08-28,3700.0000000,286018901,2023-07-30
14:16:36.750981+00,1428251171,257558,0
0,640725189,101745,549739,2,2023-08-29,3700.0000000,286018902,2023-07-30
14:16:36.750981+00,1429371337,257558,0
0,640725189,101745,549739,2,2023-08-30,3700.0000000,286018903,2023-07-30
14:16:36.750981+00,1430351715,257558,0
0,640725189,101745,549739,2,2023-08-31,3700.0000000,286018904,2023-07-30
14:16:36.750981+00,1431233934,257558,0
0,640725189,101747,203168,1,2023-08-01,5300.0000000,286019029,2023-07-30
14:16:36.750981+00,1403251629,257561,0
0,640725189,101747,203168,1,2023-08-02,5300.0000000,286019030,2023-07-30
14:16:36.750981+00,1404302251,257561,0
0,640725189,101747,203168,1,2023-08-03,5300.0000000,286019031,2023-07-30
14:16:36.750981+00,1405471667,257561,0
0,640725189,101747,203168,1,2023-08-04,5300.0000000,286019032,2023-07-30
14:16:36.750981+00,1406677106,257561,0
0,640725189,101747,203168,1,2023-08-05,5300.0000000,286019033,2023-07-30
14:16:36.750981+00,1407621368,257561,0
0,640725189,101747,203168,1,2023-08-06,5300.0000000,286019034,2023-07-30
14:16:36.750981+00,1408532971,257561,0
0,185647715,222578,489241,1,2023-07-31,3300.0000000,302101024,2023-07-30
14:16:36.750981+00,1402634706,567261,0
0,185647715,222578,896171,1,2023-07-30,4000.0000000,302101276,2023-07-30
14:16:36.750981+00,1401895973,567261,0
0,185647715,222578,896171,1,2023-07-31,4000.0000000,302101277,2023-07-30
14:16:36.750981+00,1402634719,567261,0
0,185647715,222578,896172,1,2023-07-30,4700.0000000,302101529,2023-07-30
14:16:36.750981+00,1401895986,567261,0
0,185647715,222578,896172,1,2023-07-31,4700.0000000,302101530,2023-07-30
14:16:36.750981+00,1402634732,567261,0
0,185647715,222578,1016845,1,2023-07-30,2750.0000000,302101782,2023-07-30
14:16:36.750981+00,1401895999,567261,0
0,185647715,222578,1016845,1,2023-07-31,2750.0000000,302101783,2023-07-30
14:16:36.750981+00,1402634745,567261,0
0,185647715,222639,489556,1,2023-07-30,3700.0000000,302102035,2023-07-30
14:16:36.750981+00,1401895962,567421,0
0,185647715,222639,489556,1,2023-07-31,3700.0000000,302102036,2023-07-30
14:16:36.750981+00,1402634708,567421,0
0,185647715,222639,489556,2,2023-07-30,5200.0000000,302102288,2023-07-30
14:16:36.750981+00,1401895961,567422,0
0,185647715,222639,489556,2,2023-07-31,5200.0000000,302102289,2023-07-30
14:16:36.750981+00,1402634707,567422,0
0,185647715,222639,896171,1,2023-07-30,4400.0000000,302102541,2023-07-30
14:16:36.750981+00,1401895975,567421,0
0,185647715,222639,896171,1,2023-07-31,4400.0000000,302102542,2023-07-30
14:16:36.750981+00,1402634721,567421,0
0,185647715,222639,896171,2,2023-07-30,6600.0000000,302102794,2023-07-30
14:16:36.750981+00,1401895974,567422,0
0,185647715,222639,896171,2,2023-07-31,6600.0000000,302102795,2023-07-30
14:16:36.750981+00,1402634720,567422,0
0,185647715,222639,896172,1,2023-07-30,5100.0000000,302103047,2023-07-30
14:16:36.750981+00,1401895988,567421,0
0,185647715,222639,896172,1,2023-07-31,5100.0000000,302103048,2023-07-30
14:16:36.750981+00,1402634734,567421,0
0,185647715,222639,896172,2,2023-07-30,8000.0000000,302103300,2023-07-30
14:16:36.750981+00,1401895987,567422,0
0,185647715,222639,896172,2,2023-07-31,8000.0000000,302103301,2023-07-30
14:16:36.750981+00,1402634733,567422,0
0,185647715,222639,1016845,1,2023-07-30,3150.0000000,302103553,2023-07-30
14:16:36.750981+00,1401896001,567421,0
0,185647715,222639,1016845,1,2023-07-31,3150.0000000,302103554,2023-07-30
14:16:36.750981+00,1402634747,567421,0
0,185647715,222639,1016845,2,2023-07-30,4100.0000000,302103806,2023-07-30
14:16:36.750981+00,1401896000,567422,0
0,185647715,222639,1016845,2,2023-07-31,4100.0000000,302103807,2023-07-30
14:16:36.750981+00,1402634746,567422,0
0,185647715,222648,489600,1,2023-07-30,3700.0000000,302104059,2023-07-30
14:16:36.750981+00,1401895964,567436,0
0,185647715,222648,489600,1,2023-07-31,3700.0000000,302104060,2023-07-30
14:16:36.750981+00,1402634710,567436,0
0,185647715,222648,489600,2,2023-07-30,5200.0000000,302104312,2023-07-30
14:16:36.750981+00,1401895963,567437,0
0,185647715,222648,489600,2,2023-07-31,5200.0000000,302104313,2023-07-30
14:16:36.750981+00,1402634709,567437,0
0,185647715,222648,896171,1,2023-07-30,4400.0000000,302104565,2023-07-30
14:16:36.750981+00,1401895977,567436,0
0,185647715,222648,896171,1,2023-07-31,4400.0000000,302104566,2023-07-30
14:16:36.750981+00,1402634723,567436,0
0,185647715,222648,896171,2,2023-07-30,6600.0000000,302104818,2023-07-30
14:16:36.750981+00,1401895976,567437,0
0,185647715,222648,896171,2,2023-07-31,6600.0000000,302104819,2023-07-30
14:16:36.750981+00,1402634722,567437,0
0,185647715,222648,896172,1,2023-07-30,5100.0000000,302105071,2023-07-30
14:16:36.750981+00,1401895990,567436,0
0,185647715,222648,896172,1,2023-07-31,5100.0000000,302105072,2023-07-30
14:16:36.750981+00,1402634736,567436,0
0,185647715,222648,896172,2,2023-07-30,8000.0000000,302105324,2023-07-30
14:16:36.750981+00,1401895989,567437,0
0,185647715,222648,896172,2,2023-07-31,8000.0000000,302105325,2023-07-30
14:16:36.750981+00,1402634735,567437,0
0,185647715,222648,1016845,1,2023-07-30,3150.0000000,302105577,2023-07-30
14:16:36.750981+00,1401896003,567436,0
0,185647715,222648,1016845,1,2023-07-31,3150.0000000,302105578,2023-07-30
14:16:36.750981+00,1402634749,567436,0
0,185647715,222648,1016845,2,2023-07-30,4100.0000000,302105830,2023-07-30
14:16:36.750981+00,1401896002,567437,0
0,185647715,222648,1016845,2,2023-07-31,4100.0000000,302105831,2023-07-30
14:16:36.750981+00,1402634748,567437,0
0,185647715,222653,489627,1,2023-07-30,4800.0000000,302106083,2023-07-30
14:16:36.750981+00,1401895966,567446,0
0,185647715,222653,489627,1,2023-07-31,4800.0000000,302106084,2023-07-30
14:16:36.750981+00,1402634712,567446,0
0,185647715,222653,489627,2,2023-07-30,5800.0000000,302106336,2023-07-30
14:16:36.750981+00,1401895965,567447,0
0,185647715,222653,489627,2,2023-07-31,5800.0000000,302106337,2023-07-30
14:16:36.750981+00,1402634711,567447,0
0,185647715,222653,896171,1,2023-07-30,5500.0000000,302106589,2023-07-30
14:16:36.750981+00,1401895979,567446,0
0,185647715,222653,896171,1,2023-07-31,5500.0000000,302106590,2023-07-30
14:16:36.750981+00,1402634725,567446,0
0,185647715,222653,896171,2,2023-07-30,7200.0000000,302106842,2023-07-30
14:16:36.750981+00,1401895978,567447,0
0,185647715,222653,896171,2,2023-07-31,7200.0000000,302106843,2023-07-30
14:16:36.750981+00,1402634724,567447,0
0,185647715,222653,896172,1,2023-07-30,6200.0000000,302107095,2023-07-30
14:16:36.750981+00,1401895992,567446,0
0,185647715,222653,896172,1,2023-07-31,6200.0000000,302107096,2023-07-30
14:16:36.750981+00,1402634738,567446,0
0,185647715,222653,896172,2,2023-07-30,8600.0000000,302107348,2023-07-30
14:16:36.750981+00,1401895991,567447,0
0,185647715,222653,896172,2,2023-07-31,8600.0000000,302107349,2023-07-30
14:16:36.750981+00,1402634737,567447,0
0,185647715,222653,1016845,1,2023-07-30,4250.0000000,302107601,2023-07-30
14:16:36.750981+00,1401896005,567446,0
0,185647715,222653,1016845,1,2023-07-31,4250.0000000,302107602,2023-07-30
14:16:36.750981+00,1402634751,567446,0
0,185647715,222653,1016845,2,2023-07-30,4700.0000000,302107854,2023-07-30
14:16:36.750981+00,1401896004,567447,0
0,185647715,222653,1016845,2,2023-07-31,4700.0000000,302107855,2023-07-30
14:16:36.750981+00,1402634750,567447,0
0,185647715,222654,489632,1,2023-07-30,7200.0000000,302108107,2023-07-30
14:16:36.750981+00,1401895968,567449,0
0,185647715,222654,489632,1,2023-07-31,7200.0000000,302108108,2023-07-30
14:16:36.750981+00,1402634714,567449,0
0,185647715,222654,489632,2,2023-07-30,7200.0000000,302108360,2023-07-30
14:16:36.750981+00,1401895967,567450,0
0,185647715,222654,489632,2,2023-07-31,7200.0000000,302108361,2023-07-30
14:16:36.750981+00,1402634713,567450,0
0,185647715,222654,896171,1,2023-07-30,6900.0000000,302108613,2023-07-30
14:16:36.750981+00,1401895981,567449,0
0,185647715,222654,896171,1,2023-07-31,6900.0000000,302108614,2023-07-30
14:16:36.750981+00,1402634727,567449,0
0,185647715,222654,896171,2,2023-07-30,8600.0000000,302108866,2023-07-30
14:16:36.750981+00,1401895980,567450,0
0,185647715,222654,896171,2,2023-07-31,8600.0000000,302108867,2023-07-30
14:16:36.750981+00,1402634726,567450,0
0,185647715,222654,896172,1,2023-07-30,7600.0000000,302109119,2023-07-30
14:16:36.750981+00,1401895994,567449,0
0,185647715,222654,896172,1,2023-07-31,7600.0000000,302109120,2023-07-30
14:16:36.750981+00,1402634740,567449,0
0,185647715,222654,896172,2,2023-07-30,10000.0000000,302109372,2023-07-30
14:16:36.750981+00,1401895993,567450,0
0,185647715,222654,896172,2,2023-07-31,10000.0000000,302109373,2023-07-30
14:16:36.750981+00,1402634739,567450,0
0,185647715,222654,1016845,1,2023-07-30,5650.0000000,302109625,2023-07-30
14:16:36.750981+00,1401896007,567449,0
0,185647715,222654,1016845,1,2023-07-31,5650.0000000,302109626,2023-07-30
14:16:36.750981+00,1402634753,567449,0
0,185647715,222654,1016845,2,2023-07-30,6100.0000000,302109878,2023-07-30
14:16:36.750981+00,1401896006,567450,0
0,185647715,222654,1016845,2,2023-07-31,6100.0000000,302109879,2023-07-30
14:16:36.750981+00,1402634752,567450,0
0,185647715,222655,489637,1,2023-07-30,7800.0000000,302110131,2023-07-30
14:16:36.750981+00,1401895970,567452,0
0,185647715,222655,489637,1,2023-07-31,7800.0000000,302110132,2023-07-30
14:16:36.750981+00,1402634716,567452,0
0,185647715,222655,489637,2,2023-07-30,9100.0000000,302110384,2023-07-30
14:16:36.750981+00,1401895969,567453,0
0,185647715,222655,489637,2,2023-07-31,9100.0000000,302110385,2023-07-30
14:16:36.750981+00,1402634715,567453,0
0,185647715,222655,896171,1,2023-07-30,8500.0000000,302110637,2023-07-30
14:16:36.750981+00,1401895983,567452,0
0,185647715,222655,896171,1,2023-07-31,8500.0000000,302110638,2023-07-30
14:16:36.750981+00,1402634729,567452,0
0,185647715,222655,896171,2,2023-07-30,10500.0000000,302110890,2023-07-30
14:16:36.750981+00,1401895982,567453,0
0,185647715,222655,896171,2,2023-07-31,10500.0000000,302110891,2023-07-30
14:16:36.750981+00,1402634728,567453,0
0,185647715,222655,896172,1,2023-07-30,9200.0000000,302111143,2023-07-30
14:16:36.750981+00,1401895996,567452,0
0,185647715,222655,896172,1,2023-07-31,9200.0000000,302111144,2023-07-30
14:16:36.750981+00,1402634742,567452,0
0,185647715,222655,896172,2,2023-07-30,11900.0000000,302111396,2023-07-30
14:16:36.750981+00,1401895995,567453,0
0,185647715,222655,896172,2,2023-07-31,11900.0000000,302111397,2023-07-30
14:16:36.750981+00,1402634741,567453,0
0,185647715,222655,1016845,1,2023-07-30,7250.0000000,302111649,2023-07-30
14:16:36.750981+00,1401896009,567452,0
0,185647715,222655,1016845,1,2023-07-31,7250.0000000,302111650,2023-07-30
14:16:36.750981+00,1402634755,567452,0
0,185647715,222655,1016845,2,2023-07-30,8000.0000000,302111902,2023-07-30
14:16:36.750981+00,1401896008,567453,0
0,185647715,222655,1016845,2,2023-07-31,8000.0000000,302111903,2023-07-30
14:16:36.750981+00,1402634754,567453,0
0,185647715,222656,489642,1,2023-07-30,12000.0000000,302112155,2023-07-30
14:16:36.750981+00,1401895972,567455,0
0,185647715,222656,489642,1,2023-07-31,12000.0000000,302112156,2023-07-30
14:16:36.750981+00,1402634718,567455,0
0,185647715,222656,489642,2,2023-07-30,14500.0000000,302112408,2023-07-30
14:16:36.750981+00,1401895971,567456,0
0,185647715,222656,489642,2,2023-07-31,14500.0000000,302112409,2023-07-30
14:16:36.750981+00,1402634717,567456,0
0,185647715,222656,896171,1,2023-07-30,12700.0000000,302112661,2023-07-30
14:16:36.750981+00,1401895985,567455,0
0,185647715,222656,896171,1,2023-07-31,12700.0000000,302112662,2023-07-30
14:16:36.750981+00,1402634731,567455,0
0,185647715,222656,896171,2,2023-07-30,15900.0000000,302112914,2023-07-30
14:16:36.750981+00,1401895984,567456,0
0,185647715,222656,896171,2,2023-07-31,15900.0000000,302112915,2023-07-30
14:16:36.750981+00,1402634730,567456,0
0,185647715,222656,896172,1,2023-07-30,13400.0000000,302113167,2023-07-30
14:16:36.750981+00,1401895998,567455,0
0,185647715,222656,896172,1,2023-07-31,13400.0000000,302113168,2023-07-30
14:16:36.750981+00,1402634744,567455,0
0,185647715,222656,896172,2,2023-07-30,17300.0000000,302113420,2023-07-30
14:16:36.750981+00,1401895997,567456,0
0,185647715,222656,896172,2,2023-07-31,17300.0000000,302113421,2023-07-30
14:16:36.750981+00,1402634743,567456,0
0,185647715,222656,1016845,1,2023-07-30,11450.0000000,302113673,2023-07-30
14:16:36.750981+00,1401896011,567455,0
0,185647715,222656,1016845,1,2023-07-31,11450.0000000,302113674,2023-07-30
14:16:36.750981+00,1402634757,567455,0
0,185647715,222656,1016845,2,2023-07-30,13400.0000000,302113926,2023-07-30
14:16:36.750981+00,1401896010,567456,0
0,185647715,222656,1016845,2,2023-07-31,13400.0000000,302113927,2023-07-30
14:16:36.750981+00,1402634756,567456,0
0,640725189,101742,203163,1,2023-07-30,2700.0000000,286017477,2023-07-30
14:16:36.750981+00,1401882107,257550,0
0,640725189,101742,203163,1,2023-07-31,2700.0000000,286017478,2023-07-30
14:16:36.750981+00,1402623424,257550,0
0,640725189,101742,549736,1,2023-07-30,2350.0000000,286017632,2023-07-30
14:16:36.750981+00,1401882114,257550,0
0,640725189,101742,549736,1,2023-07-31,2350.0000000,286017633,2023-07-30
14:16:36.750981+00,1402623431,257550,0
0,640725189,101743,203164,1,2023-07-30,3350.0000000,286017787,2023-07-30
14:16:36.750981+00,1401882108,257551,0
0,640725189,101743,203164,1,2023-07-31,3350.0000000,286017788,2023-07-30
14:16:36.750981+00,1402623425,257551,0
0,640725189,101743,549737,1,2023-07-30,3000.0000000,286017942,2023-07-30
14:16:36.750981+00,1401882115,257551,0
0,640725189,101743,549737,1,2023-07-31,3000.0000000,286017943,2023-07-30
14:16:36.750981+00,1402623432,257551,0
0,640725189,101744,203165,2,2023-07-30,3950.0000000,286018097,2023-07-30
14:16:36.750981+00,1401882109,257553,0
0,640725189,101744,203165,2,2023-07-31,3950.0000000,286018098,2023-07-30
14:16:36.750981+00,1402623426,257553,0
0,640725189,101744,549738,2,2023-07-30,3250.0000000,286018252,2023-07-30
14:16:36.750981+00,1401882116,257553,0
0,640725189,101744,549738,2,2023-07-31,3250.0000000,286018253,2023-07-30
14:16:36.750981+00,1402623433,257553,0
0,640725189,101745,203166,1,2023-07-30,3650.0000000,286018407,2023-07-30
14:16:36.750981+00,1401882110,257557,0
0,640725189,101745,203166,1,2023-07-31,3650.0000000,286018408,2023-07-30
14:16:36.750981+00,1402623427,257557,0
0,640725189,101745,203166,2,2023-07-30,4400.0000000,286018562,2023-07-30
14:16:36.750981+00,1401882111,257558,0
0,640725189,101745,203166,2,2023-07-31,4400.0000000,286018563,2023-07-30
14:16:36.750981+00,1402623428,257558,0
0,640725189,101745,549739,1,2023-07-30,3300.0000000,286018717,2023-07-30
14:16:36.750981+00,1401882118,257557,0
0,640725189,101745,549739,1,2023-07-31,3300.0000000,286018718,2023-07-30
14:16:36.750981+00,1402623436,257557,0
0,640725189,101745,549739,2,2023-07-30,3700.0000000,286018872,2023-07-30
14:16:36.750981+00,1401882117,257558,0
0,640725189,101745,549739,2,2023-07-31,3700.0000000,286018873,2023-07-30
14:16:36.750981+00,1402623435,257558,0
0,640725189,101747,203168,1,2023-07-30,5300.0000000,286019027,2023-07-30
14:16:36.750981+00,1401882112,257561,0
0,640725189,101747,203168,1,2023-07-31,5300.0000000,286019028,2023-07-30
14:16:36.750981+00,1402623429,257561,0
0,640725189,101747,203168,2,2023-07-30,5800.0000000,286019182,2023-07-30
14:16:36.750981+00,1401882113,257562,0
0,640725189,101747,203168,2,2023-07-31,5800.0000000,286019183,2023-07-30
14:16:36.750981+00,1402623430,257562,0
0,640725189,101747,549740,1,2023-07-30,4950.0000000,286019337,2023-07-30
14:16:36.750981+00,1401882120,257561,0
0,640725189,101747,549740,1,2023-07-31,4950.0000000,286019338,2023-07-30
14:16:36.750981+00,1402623440,257561,0
0,640725189,101747,549740,2,2023-07-30,5100.0000000,286019492,2023-07-30
14:16:36.750981+00,1401882119,257562,0
0,640725189,101747,549740,2,2023-07-31,5100.0000000,286019493,2023-07-30
14:16:36.750981+00,1402623438,257562,0
0,961513435,345079,972890,1,2023-07-30,2500.0000000,230140479,2023-07-30
14:16:36.750981+00,1165235851,925030,0
0,961513435,345079,972890,1,2023-07-31,2500.0000000,230140480,2023-07-30
14:16:36.750981+00,1165235852,925030,0
0,961513435,355770,972890,1,2023-07-30,1300.0000000,230140944,2023-07-30
14:16:36.750981+00,1184969008,955856,0
0,961513435,355770,972890,1,2023-07-31,1300.0000000,230140945,2023-07-30
14:16:36.750981+00,1184969011,955856,0
0,961513435,355770,1012400,1,2023-07-30,1300.0000000,230141409,2023-07-30
14:16:36.750981+00,1165236070,955856,0
0,961513435,355770,1012400,1,2023-07-31,1300.0000000,230141410,2023-07-30
14:16:36.750981+00,1165236071,955856,0
0,961513435,355771,972890,1,2023-07-30,1300.0000000,230141431,2023-07-30
14:16:36.750981+00,1184970062,955857,0
0,961513435,355771,972890,1,2023-07-31,1300.0000000,230141432,2023-07-30
14:16:36.750981+00,1184970063,955857,0
0,961513435,355771,1012401,1,2023-07-30,1300.0000000,230141896,2023-07-30
14:16:36.750981+00,1165236293,955857,0
0,961513435,355771,1012401,1,2023-07-31,1300.0000000,230141897,2023-07-30
14:16:36.750981+00,1165236295,955857,0
0,954493183,216176,461514,1,2024-12-01,5500.0000000,204562868,2023-07-30
14:16:36.750981+00,1756312461,548487,0
0,640725189,101747,203168,1,2023-08-07,5300.0000000,286019035,2023-07-30
14:16:36.750981+00,1409248616,257561,0
0,640725189,101747,203168,1,2023-08-08,5300.0000000,286019036,2023-07-30
14:16:36.750981+00,1409861551,257561,0
0,640725189,101747,203168,1,2023-08-09,5300.0000000,286019037,2023-07-30
14:16:36.750981+00,1410801642,257561,0
0,640725189,101747,203168,1,2023-08-10,5300.0000000,286019038,2023-07-30
14:16:36.750981+00,1411840676,257561,0
0,640725189,101747,203168,1,2023-08-11,5300.0000000,286019039,2023-07-30
14:16:36.750981+00,1412852359,257561,0
0,640725189,101747,203168,1,2023-08-12,5300.0000000,286019040,2023-07-30
14:16:36.750981+00,1413988760,257561,0
0,640725189,101747,203168,1,2023-08-13,5300.0000000,286019041,2023-07-30
14:16:36.750981+00,1414738246,257561,0
0,640725189,101747,203168,1,2023-08-14,5300.0000000,286019042,2023-07-30
14:16:36.750981+00,1415333537,257561,0
0,640725189,101747,203168,1,2023-08-15,5300.0000000,286019043,2023-07-30
14:16:36.750981+00,1415991459,257561,0
0,640725189,101747,203168,1,2023-08-16,5300.0000000,286019044,2023-07-30
14:16:36.750981+00,1417133249,257561,0
0,640725189,101747,203168,1,2023-08-17,5300.0000000,286019045,2023-07-30
14:16:36.750981+00,1417827144,257561,0
0,640725189,101747,203168,1,2023-08-18,5300.0000000,286019046,2023-07-30
14:16:36.750981+00,1418815187,257561,0
0,640725189,101747,203168,1,2023-08-19,5300.0000000,286019047,2023-07-30
14:16:36.750981+00,1420121241,257561,0
0,640725189,101747,203168,1,2023-08-20,5300.0000000,286019048,2023-07-30
14:16:36.750981+00,1421302956,257561,0
0,640725189,101747,203168,1,2023-08-21,5300.0000000,286019049,2023-07-30
14:16:36.750981+00,1421893788,257561,0
0,640725189,101747,203168,1,2023-08-22,5300.0000000,286019050,2023-07-30
14:16:36.750981+00,1422574741,257561,0
0,640725189,101747,203168,1,2023-08-23,5300.0000000,286019051,2023-07-30
14:16:36.750981+00,1423641869,257561,0
0,640725189,101747,203168,1,2023-08-24,5300.0000000,286019052,2023-07-30
14:16:36.750981+00,1425001757,257561,0
0,640725189,101747,203168,1,2023-08-25,5300.0000000,286019053,2023-07-30
14:16:36.750981+00,1426189087,257561,0
0,640725189,101747,203168,1,2023-08-26,5300.0000000,286019054,2023-07-30
14:16:36.750981+00,1426909547,257561,0
0,640725189,101747,203168,1,2023-08-27,5300.0000000,286019055,2023-07-30
14:16:36.750981+00,1427745858,257561,0
0,640725189,101747,203168,1,2023-08-28,5300.0000000,286019056,2023-07-30
14:16:36.750981+00,1428251166,257561,0
0,640725189,101747,203168,1,2023-08-29,5300.0000000,286019057,2023-07-30
14:16:36.750981+00,1429371332,257561,0
0,640725189,101747,203168,1,2023-08-30,5300.0000000,286019058,2023-07-30
14:16:36.750981+00,1430351710,257561,0
0,640725189,101747,203168,1,2023-08-31,5300.0000000,286019059,2023-07-30
14:16:36.750981+00,1431233929,257561,0
0,640725189,101747,203168,2,2023-08-01,5800.0000000,286019184,2023-07-30
14:16:36.750981+00,1403251630,257562,0
0,640725189,101747,203168,2,2023-08-02,5800.0000000,286019185,2023-07-30
14:16:36.750981+00,1404302252,257562,0
0,640725189,101747,203168,2,2023-08-03,5800.0000000,286019186,2023-07-30
14:16:36.750981+00,1405471668,257562,0
0,640725189,101747,203168,2,2023-08-04,5800.0000000,286019187,2023-07-30
14:16:36.750981+00,1406677107,257562,0
0,640725189,101747,203168,2,2023-08-05,5800.0000000,286019188,2023-07-30
14:16:36.750981+00,1407621369,257562,0
0,640725189,101747,203168,2,2023-08-06,5800.0000000,286019189,2023-07-30
14:16:36.750981+00,1408532972,257562,0
0,640725189,101747,203168,2,2023-08-07,5800.0000000,286019190,2023-07-30
14:16:36.750981+00,1409248617,257562,0
0,640725189,101747,203168,2,2023-08-08,5800.0000000,286019191,2023-07-30
14:16:36.750981+00,1409861552,257562,0
0,640725189,101747,203168,2,2023-08-09,5800.0000000,286019192,2023-07-30
14:16:36.750981+00,1410801643,257562,0
0,640725189,101747,203168,2,2023-08-10,5800.0000000,286019193,2023-07-30
14:16:36.750981+00,1411840677,257562,0
0,640725189,101747,203168,2,2023-08-11,5800.0000000,286019194,2023-07-30
14:16:36.750981+00,1412852360,257562,0
0,640725189,101747,203168,2,2023-08-12,5800.0000000,286019195,2023-07-30
14:16:36.750981+00,1413988761,257562,0
0,640725189,101747,203168,2,2023-08-13,5800.0000000,286019196,2023-07-30
14:16:36.750981+00,1414738249,257562,0
0,640725189,101747,203168,2,2023-08-14,5800.0000000,286019197,2023-07-30
14:16:36.750981+00,1415333538,257562,0
0,640725189,101747,203168,2,2023-08-15,5800.0000000,286019198,2023-07-30
14:16:36.750981+00,1415991460,257562,0
0,640725189,101747,203168,2,2023-08-16,5800.0000000,286019199,2023-07-30
14:16:36.750981+00,1417133252,257562,0
0,640725189,101747,203168,2,2023-08-17,5800.0000000,286019200,2023-07-30
14:16:36.750981+00,1417827145,257562,0
0,640725189,101747,203168,2,2023-08-18,5800.0000000,286019201,2023-07-30
14:16:36.750981+00,1418815188,257562,0
0,640725189,101747,203168,2,2023-08-19,5800.0000000,286019202,2023-07-30
14:16:36.750981+00,1420121242,257562,0
0,640725189,101747,203168,2,2023-08-20,5800.0000000,286019203,2023-07-30
14:16:36.750981+00,1421302957,257562,0
0,640725189,101747,203168,2,2023-08-21,5800.0000000,286019204,2023-07-30
14:16:36.750981+00,1421893789,257562,0
0,640725189,101747,203168,2,2023-08-22,5800.0000000,286019205,2023-07-30
14:16:36.750981+00,1422574742,257562,0
0,640725189,101747,203168,2,2023-08-23,5800.0000000,286019206,2023-07-30
14:16:36.750981+00,1423641870,257562,0
0,640725189,101747,203168,2,2023-08-24,5800.0000000,286019207,2023-07-30
14:16:36.750981+00,1425001758,257562,0
0,640725189,101747,203168,2,2023-08-25,5800.0000000,286019208,2023-07-30
14:16:36.750981+00,1426189088,257562,0
0,640725189,101747,203168,2,2023-08-26,5800.0000000,286019209,2023-07-30
14:16:36.750981+00,1426909548,257562,0
0,640725189,101747,203168,2,2023-08-27,5800.0000000,286019210,2023-07-30
14:16:36.750981+00,1427745859,257562,0
0,640725189,101747,203168,2,2023-08-28,5800.0000000,286019211,2023-07-30
14:16:36.750981+00,1428251167,257562,0
0,640725189,101747,203168,2,2023-08-29,5800.0000000,286019212,2023-07-30
14:16:36.750981+00,1429371333,257562,0
0,640725189,101747,203168,2,2023-08-30,5800.0000000,286019213,2023-07-30
14:16:36.750981+00,1430351711,257562,0
0,640725189,101747,203168,2,2023-08-31,5800.0000000,286019214,2023-07-30
14:16:36.750981+00,1431233930,257562,0
0,640725189,101747,549740,1,2023-08-01,4950.0000000,286019339,2023-07-30
14:16:36.750981+00,1403251637,257561,0
0,640725189,101747,549740,1,2023-08-02,4950.0000000,286019340,2023-07-30
14:16:36.750981+00,1404302259,257561,0
0,640725189,101747,549740,1,2023-08-03,4950.0000000,286019341,2023-07-30
14:16:36.750981+00,1405471675,257561,0
0,640725189,101747,549740,1,2023-08-04,4950.0000000,286019342,2023-07-30
14:16:36.750981+00,1406677114,257561,0
0,640725189,101747,549740,1,2023-08-05,4950.0000000,286019343,2023-07-30
14:16:36.750981+00,1407621376,257561,0
0,640725189,101747,549740,1,2023-08-06,4950.0000000,286019344,2023-07-30
14:16:36.750981+00,1408532979,257561,0
0,640725189,101747,549740,1,2023-08-07,4950.0000000,286019345,2023-07-30
14:16:36.750981+00,1409248624,257561,0
0,640725189,101747,549740,1,2023-08-08,4950.0000000,286019346,2023-07-30
14:16:36.750981+00,1409861559,257561,0
0,640725189,101747,549740,1,2023-08-09,4950.0000000,286019347,2023-07-30
14:16:36.750981+00,1410801650,257561,0
0,640725189,101747,549740,1,2023-08-10,4950.0000000,286019348,2023-07-30
14:16:36.750981+00,1411840684,257561,0
0,640725189,101747,549740,1,2023-08-11,4950.0000000,286019349,2023-07-30
14:16:36.750981+00,1412852372,257561,0
0,640725189,101747,549740,1,2023-08-12,4950.0000000,286019350,2023-07-30
14:16:36.750981+00,1413988768,257561,0
0,640725189,101747,549740,1,2023-08-13,4950.0000000,286019351,2023-07-30
14:16:36.750981+00,1414738265,257561,0
0,640725189,101747,549740,1,2023-08-14,4950.0000000,286019352,2023-07-30
14:16:36.750981+00,1415333545,257561,0
0,640725189,101747,549740,1,2023-08-15,4950.0000000,286019353,2023-07-30
14:16:36.750981+00,1415991467,257561,0
0,640725189,101747,549740,1,2023-08-16,4950.0000000,286019354,2023-07-30
14:16:36.750981+00,1417133272,257561,0
0,640725189,101747,549740,1,2023-08-17,4950.0000000,286019355,2023-07-30
14:16:36.750981+00,1417827152,257561,0
0,640725189,101747,549740,1,2023-08-18,4950.0000000,286019356,2023-07-30
14:16:36.750981+00,1418815195,257561,0
0,640725189,101747,549740,1,2023-08-19,4950.0000000,286019357,2023-07-30
14:16:36.750981+00,1420121249,257561,0
0,640725189,101747,549740,1,2023-08-20,4950.0000000,286019358,2023-07-30
14:16:36.750981+00,1421302964,257561,0
0,640725189,101747,549740,1,2023-08-21,4950.0000000,286019359,2023-07-30
14:16:36.750981+00,1421893796,257561,0
0,640725189,101747,549740,1,2023-08-22,4950.0000000,286019360,2023-07-30
14:16:36.750981+00,1422574749,257561,0
0,640725189,101747,549740,1,2023-08-23,4950.0000000,286019361,2023-07-30
14:16:36.750981+00,1423641877,257561,0
0,640725189,101747,549740,1,2023-08-24,4950.0000000,286019362,2023-07-30
14:16:36.750981+00,1425001765,257561,0
0,640725189,101747,549740,1,2023-08-25,4950.0000000,286019363,2023-07-30
14:16:36.750981+00,1426189095,257561,0
0,640725189,101747,549740,1,2023-08-26,4950.0000000,286019364,2023-07-30
14:16:36.750981+00,1426909555,257561,0
0,640725189,101747,549740,1,2023-08-27,4950.0000000,286019365,2023-07-30
14:16:36.750981+00,1427745866,257561,0
0,640725189,101747,549740,1,2023-08-28,4950.0000000,286019366,2023-07-30
14:16:36.750981+00,1428251174,257561,0
0,640725189,101747,549740,1,2023-08-29,4950.0000000,286019367,2023-07-30
14:16:36.750981+00,1429371340,257561,0
0,640725189,101747,549740,1,2023-08-30,4950.0000000,286019368,2023-07-30
14:16:36.750981+00,1430351718,257561,0
0,640725189,101747,549740,1,2023-08-31,4950.0000000,286019369,2023-07-30
14:16:36.750981+00,1431233937,257561,0
0,640725189,101747,549740,2,2023-08-01,5100.0000000,286019494,2023-07-30
14:16:36.750981+00,1403251636,257562,0
0,640725189,101747,549740,2,2023-08-02,5100.0000000,286019495,2023-07-30
14:16:36.750981+00,1404302258,257562,0
0,640725189,101747,549740,2,2023-08-03,5100.0000000,286019496,2023-07-30
14:16:36.750981+00,1405471674,257562,0
0,640725189,101747,549740,2,2023-08-04,5100.0000000,286019497,2023-07-30
14:16:36.750981+00,1406677113,257562,0
0,640725189,101747,549740,2,2023-08-05,5100.0000000,286019498,2023-07-30
14:16:36.750981+00,1407621375,257562,0
0,640725189,101747,549740,2,2023-08-06,5100.0000000,286019499,2023-07-30
14:16:36.750981+00,1408532978,257562,0
0,640725189,101747,549740,2,2023-08-07,5100.0000000,286019500,2023-07-30
14:16:36.750981+00,1409248623,257562,0
0,640725189,101747,549740,2,2023-08-08,5100.0000000,286019501,2023-07-30
14:16:36.750981+00,1409861558,257562,0
0,640725189,101747,549740,2,2023-08-09,5100.0000000,286019502,2023-07-30
14:16:36.750981+00,1410801649,257562,0
0,640725189,101747,549740,2,2023-08-10,5100.0000000,286019503,2023-07-30
14:16:36.750981+00,1411840683,257562,0
0,640725189,101747,549740,2,2023-08-11,5100.0000000,286019504,2023-07-30
14:16:36.750981+00,1412852370,257562,0
0,640725189,101747,549740,2,2023-08-12,5100.0000000,286019505,2023-07-30
14:16:36.750981+00,1413988767,257562,0
0,640725189,101747,549740,2,2023-08-13,5100.0000000,286019506,2023-07-30
14:16:36.750981+00,1414738263,257562,0
0,640725189,101747,549740,2,2023-08-14,5100.0000000,286019507,2023-07-30
14:16:36.750981+00,1415333544,257562,0
0,640725189,101747,549740,2,2023-08-15,5100.0000000,286019508,2023-07-30
14:16:36.750981+00,1415991466,257562,0
0,640725189,101747,549740,2,2023-08-16,5100.0000000,286019509,2023-07-30
14:16:36.750981+00,1417133270,257562,0
0,640725189,101747,549740,2,2023-08-17,5100.0000000,286019510,2023-07-30
14:16:36.750981+00,1417827151,257562,0
0,640725189,101747,549740,2,2023-08-18,5100.0000000,286019511,2023-07-30
14:16:36.750981+00,1418815194,257562,0
0,640725189,101747,549740,2,2023-08-19,5100.0000000,286019512,2023-07-30
14:16:36.750981+00,1420121248,257562,0
0,640725189,101747,549740,2,2023-08-20,5100.0000000,286019513,2023-07-30
14:16:36.750981+00,1421302963,257562,0
0,640725189,101747,549740,2,2023-08-21,5100.0000000,286019514,2023-07-30
14:16:36.750981+00,1421893795,257562,0
0,640725189,101747,549740,2,2023-08-22,5100.0000000,286019515,2023-07-30
14:16:36.750981+00,1422574748,257562,0
0,640725189,101747,549740,2,2023-08-23,5100.0000000,286019516,2023-07-30
14:16:36.750981+00,1423641876,257562,0
0,640725189,101747,549740,2,2023-08-24,5100.0000000,286019517,2023-07-30
14:16:36.750981+00,1425001764,257562,0
0,640725189,101747,549740,2,2023-08-25,5100.0000000,286019518,2023-07-30
14:16:36.750981+00,1426189094,257562,0
0,640725189,101747,549740,2,2023-08-26,5100.0000000,286019519,2023-07-30
14:16:36.750981+00,1426909554,257562,0
0,640725189,101747,549740,2,2023-08-27,5100.0000000,286019520,2023-07-30
14:16:36.750981+00,1427745865,257562,0
0,640725189,101747,549740,2,2023-08-28,5100.0000000,286019521,2023-07-30
14:16:36.750981+00,1428251173,257562,0
0,640725189,101747,549740,2,2023-08-29,5100.0000000,286019522,2023-07-30
14:16:36.750981+00,1429371339,257562,0
0,640725189,101747,549740,2,2023-08-30,5100.0000000,286019523,2023-07-30
14:16:36.750981+00,1430351717,257562,0
0,640725189,101747,549740,2,2023-08-31,5100.0000000,286019524,2023-07-30
14:16:36.750981+00,1431233936,257562,0
0,954493183,216176,461514,1,2023-08-01,5500.0000000,204562380,2023-07-30
14:16:36.750981+00,1183374858,548487,0
0,954493183,216176,461514,1,2023-08-02,5500.0000000,204562381,2023-07-30
14:16:36.750981+00,1183374861,548487,0
0,954493183,216176,461514,1,2023-08-03,5500.0000000,204562382,2023-07-30
14:16:36.750981+00,1183374869,548487,0
0,954493183,216176,461514,1,2023-08-04,5500.0000000,204562383,2023-07-30
14:16:36.750981+00,1183374870,548487,0
0,954493183,216176,461514,1,2023-08-05,5500.0000000,204562384,2023-07-30
14:16:36.750981+00,1183374873,548487,0
0,954493183,216176,461514,1,2023-08-06,5500.0000000,204562385,2023-07-30
14:16:36.750981+00,1183374877,548487,0
0,954493183,216176,461514,1,2023-08-07,5500.0000000,204562386,2023-07-30
14:16:36.750981+00,1183374881,548487,0
0,954493183,216176,461514,1,2023-08-08,5500.0000000,204562387,2023-07-30
14:16:36.750981+00,1183374883,548487,0
0,954493183,216176,461514,1,2023-08-09,5500.0000000,204562388,2023-07-30
14:16:36.750981+00,1183374887,548487,0
0,954493183,216176,461514,1,2023-08-10,5500.0000000,204562389,2023-07-30
14:16:36.750981+00,1183374890,548487,0
0,954493183,216176,461514,1,2023-08-11,5500.0000000,204562390,2023-07-30
14:16:36.750981+00,1183374896,548487,0
0,954493183,216176,461514,1,2023-08-12,5500.0000000,204562391,2023-07-30
14:16:36.750981+00,1183374902,548487,0
0,954493183,216176,461514,1,2023-08-13,5500.0000000,204562392,2023-07-30
14:16:36.750981+00,1183374908,548487,0
0,954493183,216176,461514,1,2023-08-14,5500.0000000,204562393,2023-07-30
14:16:36.750981+00,1183374910,548487,0
0,954493183,216176,461514,1,2023-08-15,5500.0000000,204562394,2023-07-30
14:16:36.750981+00,1183374916,548487,0
0,954493183,216176,461514,1,2023-08-16,5500.0000000,204562395,2023-07-30
14:16:36.750981+00,1183374921,548487,0
0,954493183,216176,461514,1,2023-08-17,5500.0000000,204562396,2023-07-30
14:16:36.750981+00,1183374925,548487,0
0,954493183,216176,461514,1,2023-08-18,5500.0000000,204562397,2023-07-30
14:16:36.750981+00,1183374931,548487,0
0,954493183,216176,461514,1,2023-08-19,5500.0000000,204562398,2023-07-30
14:16:36.750981+00,1183374938,548487,0
0,954493183,216176,461514,1,2023-08-20,5500.0000000,204562399,2023-07-30
14:16:36.750981+00,1183374943,548487,0
0,954493183,216176,461514,1,2023-08-21,5500.0000000,204562400,2023-07-30
14:16:36.750981+00,1183374945,548487,0
0,954493183,216176,461514,1,2023-08-22,5500.0000000,204562401,2023-07-30
14:16:36.750981+00,1183374951,548487,0
0,954493183,216176,461514,1,2023-08-23,5500.0000000,204562402,2023-07-30
14:16:36.750981+00,1183374955,548487,0
0,954493183,216176,461514,1,2023-08-24,5500.0000000,204562403,2023-07-30
14:16:36.750981+00,1183374960,548487,0
0,954493183,216176,461514,1,2023-08-25,5500.0000000,204562404,2023-07-30
14:16:36.750981+00,1183374963,548487,0
0,954493183,216176,461514,1,2023-08-26,5500.0000000,204562405,2023-07-30
14:16:36.750981+00,1183374967,548487,0
0,954493183,216176,461514,1,2023-08-27,5500.0000000,204562406,2023-07-30
14:16:36.750981+00,1183374971,548487,0
0,954493183,216176,461514,1,2023-08-28,5500.0000000,204562407,2023-07-30
14:16:36.750981+00,1183374974,548487,0
0,954493183,216176,461514,1,2023-08-29,5500.0000000,204562408,2023-07-30
14:16:36.750981+00,1183374976,548487,0
0,954493183,216176,461514,1,2023-08-30,5500.0000000,204562409,2023-07-30
14:16:36.750981+00,1183374979,548487,0
0,954493183,216176,461514,1,2023-08-31,5500.0000000,204562410,2023-07-30
14:16:36.750981+00,1183374981,548487,0
0,954493183,216176,461514,2,2023-08-01,5500.0000000,204562901,2023-07-30
14:16:36.750981+00,1183375024,548488,0
0,954493183,216176,461514,2,2023-08-02,5500.0000000,204562902,2023-07-30
14:16:36.750981+00,1183375029,548488,0
0,954493183,216176,461514,2,2023-08-03,5500.0000000,204562903,2023-07-30
14:16:36.750981+00,1183375033,548488,0
0,954493183,216176,461514,2,2023-08-04,5500.0000000,204562904,2023-07-30
14:16:36.750981+00,1183375035,548488,0
0,954493183,216176,461514,2,2023-08-05,5500.0000000,204562905,2023-07-30
14:16:36.750981+00,1183375038,548488,0
0,954493183,216176,461514,2,2023-08-06,5500.0000000,204562906,2023-07-30
14:16:36.750981+00,1183375042,548488,0
0,954493183,216176,461514,2,2023-08-07,5500.0000000,204562907,2023-07-30
14:16:36.750981+00,1183375046,548488,0
0,954493183,216176,461514,2,2023-08-08,5500.0000000,204562908,2023-07-30
14:16:36.750981+00,1183375049,548488,0
0,954493183,216176,461514,2,2023-08-09,5500.0000000,204562909,2023-07-30
14:16:36.750981+00,1183375052,548488,0
0,954493183,216176,461514,2,2023-08-10,5500.0000000,204562910,2023-07-30
14:16:36.750981+00,1183375056,548488,0
0,954493183,216176,461514,2,2023-08-11,5500.0000000,204562911,2023-07-30
14:16:36.750981+00,1183375060,548488,0
0,954493183,216176,461514,2,2023-08-12,5500.0000000,204562912,2023-07-30
14:16:36.750981+00,1183375064,548488,0
0,954493183,216176,461514,2,2023-08-13,5500.0000000,204562913,2023-07-30
14:16:36.750981+00,1183375068,548488,0
0,954493183,216176,461514,2,2023-08-14,5500.0000000,204562914,2023-07-30
14:16:36.750981+00,1183375072,548488,0
0,954493183,216176,461514,2,2023-08-15,5500.0000000,204562915,2023-07-30
14:16:36.750981+00,1183375074,548488,0
0,954493183,216176,461514,2,2023-08-16,5500.0000000,204562916,2023-07-30
14:16:36.750981+00,1183375075,548488,0
0,954493183,216176,461514,2,2023-08-17,5500.0000000,204562917,2023-07-30
14:16:36.750981+00,1183375078,548488,0
0,954493183,216176,461514,2,2023-08-18,5500.0000000,204562918,2023-07-30
14:16:36.750981+00,1183375079,548488,0
0,954493183,216176,461514,2,2023-08-19,5500.0000000,204562919,2023-07-30
14:16:36.750981+00,1183375082,548488,0
0,954493183,216176,461514,2,2023-08-20,5500.0000000,204562920,2023-07-30
14:16:36.750981+00,1183375083,548488,0
0,954493183,216176,461514,2,2023-08-21,5500.0000000,204562921,2023-07-30
14:16:36.750981+00,1183375085,548488,0
0,954493183,216176,461514,2,2023-08-22,5500.0000000,204562922,2023-07-30
14:16:36.750981+00,1183375088,548488,0
0,954493183,216176,461514,2,2023-08-23,5500.0000000,204562923,2023-07-30
14:16:36.750981+00,1183375090,548488,0
0,954493183,216176,461514,2,2023-08-24,5500.0000000,204562924,2023-07-30
14:16:36.750981+00,1183375093,548488,0
0,954493183,216176,461514,2,2023-08-25,5500.0000000,204562925,2023-07-30
14:16:36.750981+00,1183375098,548488,0
0,954493183,216176,461514,2,2023-08-26,5500.0000000,204562926,2023-07-30
14:16:36.750981+00,1183375099,548488,0
0,954493183,216176,461514,2,2023-08-27,5500.0000000,204562927,2023-07-30
14:16:36.750981+00,1183375101,548488,0
0,954493183,216176,461514,2,2023-08-28,5500.0000000,204562928,2023-07-30
14:16:36.750981+00,1183375104,548488,0
0,954493183,216176,461514,2,2023-08-29,5500.0000000,204562929,2023-07-30
14:16:36.750981+00,1183375106,548488,0
0,954493183,216176,461514,2,2023-08-30,5500.0000000,204562930,2023-07-30
14:16:36.750981+00,1183375110,548488,0
0,954493183,216176,461514,2,2023-08-31,5500.0000000,204562931,2023-07-30
14:16:36.750981+00,1183375111,548488,0
0,954493183,216312,462120,1,2023-08-01,4500.0000000,204563422,2023-07-30
14:16:36.750981+00,1183375246,548882,0
0,954493183,216312,462120,1,2023-08-02,4500.0000000,204563423,2023-07-30
14:16:36.750981+00,1183375248,548882,0
0,954493183,216312,462120,1,2023-08-03,4500.0000000,204563424,2023-07-30
14:16:36.750981+00,1183375251,548882,0
0,954493183,216312,462120,1,2023-08-04,4500.0000000,204563425,2023-07-30
14:16:36.750981+00,1183375253,548882,0
0,954493183,216312,462120,1,2023-08-05,4500.0000000,204563426,2023-07-30
14:16:36.750981+00,1183375256,548882,0
0,954493183,216312,462120,1,2023-08-06,4500.0000000,204563427,2023-07-30
14:16:36.750981+00,1183375257,548882,0
0,954493183,216312,462120,1,2023-08-07,4500.0000000,204563428,2023-07-30
14:16:36.750981+00,1183375258,548882,0
0,954493183,216312,462120,1,2023-08-08,4500.0000000,204563429,2023-07-30
14:16:36.750981+00,1183375260,548882,0
0,954493183,216312,462120,1,2023-08-09,4500.0000000,204563430,2023-07-30
14:16:36.750981+00,1183375263,548882,0
0,954493183,216312,462120,1,2023-08-10,4500.0000000,204563431,2023-07-30
14:16:36.750981+00,1183375264,548882,0
0,954493183,216312,462120,1,2023-08-11,4500.0000000,204563432,2023-07-30
14:16:36.750981+00,1183375267,548882,0
0,954493183,216312,462120,1,2023-08-12,4500.0000000,204563433,2023-07-30
14:16:36.750981+00,1183375269,548882,0
0,954493183,216312,462120,1,2023-08-13,4500.0000000,204563434,2023-07-30
14:16:36.750981+00,1183375270,548882,0
0,954493183,216312,462120,1,2023-08-14,4500.0000000,204563435,2023-07-30
14:16:36.750981+00,1183375273,548882,0
0,954493183,216312,462120,1,2023-08-15,4500.0000000,204563436,2023-07-30
14:16:36.750981+00,1183375274,548882,0
0,954493183,216312,462120,1,2023-08-16,4500.0000000,204563437,2023-07-30
14:16:36.750981+00,1183375277,548882,0
0,954493183,216312,462120,1,2023-08-17,4500.0000000,204563438,2023-07-30
14:16:36.750981+00,1183375278,548882,0
0,954493183,216312,462120,1,2023-08-18,4500.0000000,204563439,2023-07-30
14:16:36.750981+00,1183375279,548882,0
0,954493183,216312,462120,1,2023-08-19,4500.0000000,204563440,2023-07-30
14:16:36.750981+00,1183375280,548882,0
0,954493183,216312,462120,1,2023-08-20,4500.0000000,204563441,2023-07-30
14:16:36.750981+00,1183375283,548882,0
0,954493183,216312,462120,1,2023-08-21,4500.0000000,204563442,2023-07-30
14:16:36.750981+00,1183375285,548882,0
0,954493183,216312,462120,1,2023-08-22,4500.0000000,204563443,2023-07-30
14:16:36.750981+00,1183375288,548882,0
0,954493183,216312,462120,1,2023-08-23,4500.0000000,204563444,2023-07-30
14:16:36.750981+00,1183375289,548882,0
0,954493183,216312,462120,1,2023-08-24,4500.0000000,204563445,2023-07-30
14:16:36.750981+00,1183375291,548882,0
0,954493183,216312,462120,1,2023-08-25,4500.0000000,204563446,2023-07-30
14:16:36.750981+00,1183375292,548882,0
0,954493183,216312,462120,1,2023-08-26,4500.0000000,204563447,2023-07-30
14:16:36.750981+00,1183375294,548882,0
0,954493183,216312,462120,1,2023-08-27,4500.0000000,204563448,2023-07-30
14:16:36.750981+00,1183375297,548882,0
0,954493183,216312,462120,1,2023-08-28,4500.0000000,204563449,2023-07-30
14:16:36.750981+00,1183375299,548882,0
0,954493183,216312,462120,1,2023-08-29,4500.0000000,204563450,2023-07-30
14:16:36.750981+00,1183375301,548882,0
0,954493183,216312,462120,1,2023-08-30,4500.0000000,204563451,2023-07-30
14:16:36.750981+00,1183375305,548882,0
0,954493183,216312,462120,1,2023-08-31,4500.0000000,204563452,2023-07-30
14:16:36.750981+00,1183375306,548882,0
0,954493183,216312,462120,2,2023-08-01,4500.0000000,204563943,2023-07-30
14:16:36.750981+00,1183375148,548883,0
0,954493183,216312,462120,2,2023-08-02,4500.0000000,204563944,2023-07-30
14:16:36.750981+00,1183375152,548883,0
0,954493183,216312,462120,2,2023-08-03,4500.0000000,204563945,2023-07-30
14:16:36.750981+00,1183375154,548883,0
0,954493183,216312,462120,2,2023-08-04,4500.0000000,204563946,2023-07-30
14:16:36.750981+00,1183375157,548883,0
0,954493183,216312,462120,2,2023-08-05,4500.0000000,204563947,2023-07-30
14:16:36.750981+00,1183375162,548883,0
0,954493183,216312,462120,2,2023-08-06,4500.0000000,204563948,2023-07-30
14:16:36.750981+00,1183375164,548883,0
0,954493183,216312,462120,2,2023-08-07,4500.0000000,204563949,2023-07-30
14:16:36.750981+00,1183375170,548883,0
0,954493183,216312,462120,2,2023-08-08,4500.0000000,204563950,2023-07-30
14:16:36.750981+00,1183375172,548883,0
0,954493183,216312,462120,2,2023-08-09,4500.0000000,204563951,2023-07-30
14:16:36.750981+00,1183375174,548883,0
0,954493183,216312,462120,2,2023-08-10,4500.0000000,204563952,2023-07-30
14:16:36.750981+00,1183375178,548883,0
0,954493183,216312,462120,2,2023-08-11,4500.0000000,204563953,2023-07-30
14:16:36.750981+00,1183375180,548883,0
0,954493183,216312,462120,2,2023-08-12,4500.0000000,204563954,2023-07-30
14:16:36.750981+00,1183375184,548883,0
0,954493183,216312,462120,2,2023-08-13,4500.0000000,204563955,2023-07-30
14:16:36.750981+00,1183375186,548883,0
0,954493183,216312,462120,2,2023-08-14,4500.0000000,204563956,2023-07-30
14:16:36.750981+00,1183375189,548883,0
0,954493183,216312,462120,2,2023-08-15,4500.0000000,204563957,2023-07-30
14:16:36.750981+00,1183375192,548883,0
0,954493183,216312,462120,2,2023-08-16,4500.0000000,204563958,2023-07-30
14:16:36.750981+00,1183375194,548883,0
0,954493183,216312,462120,2,2023-08-17,4500.0000000,204563959,2023-07-30
14:16:36.750981+00,1183375195,548883,0
0,954493183,216312,462120,2,2023-08-18,4500.0000000,204563960,2023-07-30
14:16:36.750981+00,1183375197,548883,0
0,954493183,216312,462120,2,2023-08-19,4500.0000000,204563961,2023-07-30
14:16:36.750981+00,1183375199,548883,0
0,954493183,216312,462120,2,2023-08-20,4500.0000000,204563962,2023-07-30
14:16:36.750981+00,1183375201,548883,0
0,954493183,216312,462120,2,2023-08-21,4500.0000000,204563963,2023-07-30
14:16:36.750981+00,1183375203,548883,0
0,954493183,216312,462120,2,2023-08-22,4500.0000000,204563964,2023-07-30
14:16:36.750981+00,1183375205,548883,0
0,954493183,216312,462120,2,2023-08-23,4500.0000000,204563965,2023-07-30
14:16:36.750981+00,1183375208,548883,0
0,954493183,216312,462120,2,2023-08-24,4500.0000000,204563966,2023-07-30
14:16:36.750981+00,1183375209,548883,0
0,954493183,216312,462120,2,2023-08-25,4500.0000000,204563967,2023-07-30
14:16:36.750981+00,1183375213,548883,0
0,954493183,216312,462120,2,2023-08-26,4500.0000000,204563968,2023-07-30
14:16:36.750981+00,1183375216,548883,0
0,954493183,216312,462120,2,2023-08-27,4500.0000000,204563969,2023-07-30
14:16:36.750981+00,1183375218,548883,0
0,954493183,216312,462120,2,2023-08-28,4500.0000000,204563970,2023-07-30
14:16:36.750981+00,1183375219,548883,0
0,954493183,216312,462120,2,2023-08-29,4500.0000000,204563971,2023-07-30
14:16:36.750981+00,1183375220,548883,0
0,954493183,216312,462120,2,2023-08-30,4500.0000000,204563972,2023-07-30
14:16:36.750981+00,1183375221,548883,0
0,954493183,216312,462120,2,2023-08-31,4500.0000000,204563973,2023-07-30
14:16:36.750981+00,1183375223,548883,0
0,954493183,216439,462715,1,2023-08-01,3600.0000000,204564464,2023-07-30
14:16:36.750981+00,1183375453,549233,0
0,954493183,216439,462715,1,2023-08-02,3600.0000000,204564465,2023-07-30
14:16:36.750981+00,1183375456,549233,0
0,954493183,216439,462715,1,2023-08-03,3600.0000000,204564466,2023-07-30
14:16:36.750981+00,1183375458,549233,0
0,954493183,216439,462715,1,2023-08-04,3600.0000000,204564467,2023-07-30
14:16:36.750981+00,1183375460,549233,0
0,954493183,216439,462715,1,2023-08-05,3600.0000000,204564468,2023-07-30
14:16:36.750981+00,1183375462,549233,0
0,954493183,216439,462715,1,2023-08-06,3600.0000000,204564469,2023-07-30
14:16:36.750981+00,1183375465,549233,0
0,954493183,216439,462715,1,2023-08-07,3600.0000000,204564470,2023-07-30
14:16:36.750981+00,1183375469,549233,0
0,954493183,216439,462715,1,2023-08-08,3600.0000000,204564471,2023-07-30
14:16:36.750981+00,1183375472,549233,0
0,954493183,216439,462715,1,2023-08-09,3600.0000000,204564472,2023-07-30
14:16:36.750981+00,1183375474,549233,0
0,954493183,216439,462715,1,2023-08-10,3600.0000000,204564473,2023-07-30
14:16:36.750981+00,1183375477,549233,0
0,954493183,216439,462715,1,2023-08-11,3600.0000000,204564474,2023-07-30
14:16:36.750981+00,1183375481,549233,0
0,954493183,216439,462715,1,2023-08-12,3600.0000000,204564475,2023-07-30
14:16:36.750981+00,1183375485,549233,0
0,954493183,216439,462715,1,2023-08-13,3600.0000000,204564476,2023-07-30
14:16:36.750981+00,1183375489,549233,0
0,954493183,216439,462715,1,2023-08-14,3600.0000000,204564477,2023-07-30
14:16:36.750981+00,1183375493,549233,0
0,954493183,216439,462715,1,2023-08-15,3600.0000000,204564478,2023-07-30
14:16:36.750981+00,1183375497,549233,0
0,954493183,216439,462715,1,2023-08-16,3600.0000000,204564479,2023-07-30
14:16:36.750981+00,1183375501,549233,0
0,954493183,216439,462715,1,2023-08-17,3600.0000000,204564480,2023-07-30
14:16:36.750981+00,1183375504,549233,0
0,954493183,216439,462715,1,2023-08-18,3600.0000000,204564481,2023-07-30
14:16:36.750981+00,1183375506,549233,0
0,954493183,216439,462715,1,2023-08-19,3600.0000000,204564482,2023-07-30
14:16:36.750981+00,1183375508,549233,0
0,954493183,216439,462715,1,2023-08-20,3600.0000000,204564483,2023-07-30
14:16:36.750981+00,1183375511,549233,0
0,954493183,216439,462715,1,2023-08-21,3600.0000000,204564484,2023-07-30
14:16:36.750981+00,1183375514,549233,0
0,954493183,216439,462715,1,2023-08-22,3600.0000000,204564485,2023-07-30
14:16:36.750981+00,1183375518,549233,0
0,954493183,216439,462715,1,2023-08-23,3600.0000000,204564486,2023-07-30
14:16:36.750981+00,1183375520,549233,0
0,954493183,216439,462715,1,2023-08-24,3600.0000000,204564487,2023-07-30
14:16:36.750981+00,1183375525,549233,0
0,954493183,216439,462715,1,2023-08-25,3600.0000000,204564488,2023-07-30
14:16:36.750981+00,1183375527,549233,0
0,954493183,216439,462715,1,2023-08-26,3600.0000000,204564489,2023-07-30
14:16:36.750981+00,1183375531,549233,0
0,954493183,216439,462715,1,2023-08-27,3600.0000000,204564490,2023-07-30
14:16:36.750981+00,1183375535,549233,0
0,954493183,216439,462715,1,2023-08-28,3600.0000000,204564491,2023-07-30
14:16:36.750981+00,1183375540,549233,0
0,954493183,216439,462715,1,2023-08-29,3600.0000000,204564492,2023-07-30
14:16:36.750981+00,1183375546,549233,0
0,954493183,216439,462715,1,2023-08-30,3600.0000000,204564493,2023-07-30
14:16:36.750981+00,1183375552,549233,0
0,954493183,216439,462715,1,2023-08-31,3600.0000000,204564494,2023-07-30
14:16:36.750981+00,1183375558,549233,0
0,954493183,216439,462715,2,2023-08-01,3600.0000000,204564985,2023-07-30
14:16:36.750981+00,1183375344,549234,0
0,954493183,216439,462715,2,2023-08-02,3600.0000000,204564986,2023-07-30
14:16:36.750981+00,1183375346,549234,0
0,954493183,216439,462715,2,2023-08-03,3600.0000000,204564987,2023-07-30
14:16:36.750981+00,1183375347,549234,0
0,954493183,216439,462715,2,2023-08-04,3600.0000000,204564988,2023-07-30
14:16:36.750981+00,1183375350,549234,0
0,954493183,216439,462715,2,2023-08-05,3600.0000000,204564989,2023-07-30
14:16:36.750981+00,1183375353,549234,0
0,954493183,216439,462715,2,2023-08-06,3600.0000000,204564990,2023-07-30
14:16:36.750981+00,1183375357,549234,0
0,954493183,216439,462715,2,2023-08-07,3600.0000000,204564991,2023-07-30
14:16:36.750981+00,1183375360,549234,0
0,954493183,216439,462715,2,2023-08-08,3600.0000000,204564992,2023-07-30
14:16:36.750981+00,1183375364,549234,0
0,954493183,216439,462715,2,2023-08-09,3600.0000000,204564993,2023-07-30
14:16:36.750981+00,1183375367,549234,0
0,954493183,216439,462715,2,2023-08-10,3600.0000000,204564994,2023-07-30
14:16:36.750981+00,1183375371,549234,0
0,954493183,216439,462715,2,2023-08-11,3600.0000000,204564995,2023-07-30
14:16:36.750981+00,1183375374,549234,0
0,954493183,216439,462715,2,2023-08-12,3600.0000000,204564996,2023-07-30
14:16:36.750981+00,1183375376,549234,0
0,954493183,216439,462715,2,2023-08-13,3600.0000000,204564997,2023-07-30
14:16:36.750981+00,1183375379,549234,0
0,954493183,216439,462715,2,2023-08-14,3600.0000000,204564998,2023-07-30
14:16:36.750981+00,1183375382,549234,0
0,954493183,216439,462715,2,2023-08-15,3600.0000000,204564999,2023-07-30
14:16:36.750981+00,1183375385,549234,0
0,954493183,216439,462715,2,2023-08-16,3600.0000000,204565000,2023-07-30
14:16:36.750981+00,1183375386,549234,0
0,954493183,216439,462715,2,2023-08-17,3600.0000000,204565001,2023-07-30
14:16:36.750981+00,1183375387,549234,0
0,954493183,216439,462715,2,2023-08-18,3600.0000000,204565002,2023-07-30
14:16:36.750981+00,1183375390,549234,0
0,954493183,216439,462715,2,2023-08-19,3600.0000000,204565003,2023-07-30
14:16:36.750981+00,1183375391,549234,0
0,954493183,216439,462715,2,2023-08-20,3600.0000000,204565004,2023-07-30
14:16:36.750981+00,1183375393,549234,0
0,954493183,216439,462715,2,2023-08-21,3600.0000000,204565005,2023-07-30
14:16:36.750981+00,1183375395,549234,0
0,954493183,216439,462715,2,2023-08-22,3600.0000000,204565006,2023-07-30
14:16:36.750981+00,1183375398,549234,0
0,954493183,216439,462715,2,2023-08-23,3600.0000000,204565007,2023-07-30
14:16:36.750981+00,1183375399,549234,0
0,954493183,216439,462715,2,2023-08-24,3600.0000000,204565008,2023-07-30
14:16:36.750981+00,1183375401,549234,0
0,954493183,216439,462715,2,2023-08-25,3600.0000000,204565009,2023-07-30
14:16:36.750981+00,1183375403,549234,0
0,954493183,216439,462715,2,2023-08-26,3600.0000000,204565010,2023-07-30
14:16:36.750981+00,1183375405,549234,0
0,954493183,216439,462715,2,2023-08-27,3600.0000000,204565011,2023-07-30
14:16:36.750981+00,1183375407,549234,0
0,954493183,216439,462715,2,2023-08-28,3600.0000000,204565012,2023-07-30
14:16:36.750981+00,1183375408,549234,0
0,954493183,216439,462715,2,2023-08-29,3600.0000000,204565013,2023-07-30
14:16:36.750981+00,1183375410,549234,0
0,954493183,216439,462715,2,2023-08-30,3600.0000000,204565014,2023-07-30
14:16:36.750981+00,1183375412,549234,0
0,954493183,216439,462715,2,2023-08-31,3600.0000000,204565015,2023-07-30
14:16:36.750981+00,1183375413,549234,0
0,954493183,216441,462727,1,2023-08-01,3600.0000000,204565506,2023-07-30
14:16:36.750981+00,1183375601,549237,0
0,954493183,216441,462727,1,2023-08-02,3600.0000000,204565507,2023-07-30
14:16:36.750981+00,1183375605,549237,0
0,954493183,216441,462727,1,2023-08-03,3600.0000000,204565508,2023-07-30
14:16:36.750981+00,1183375607,549237,0
0,954493183,216441,462727,1,2023-08-04,3600.0000000,204565509,2023-07-30
14:16:36.750981+00,1183375610,549237,0
0,954493183,216441,462727,1,2023-08-05,3600.0000000,204565510,2023-07-30
14:16:36.750981+00,1183375612,549237,0
0,954493183,216441,462727,1,2023-08-06,3600.0000000,204565511,2023-07-30
14:16:36.750981+00,1183375614,549237,0
0,954493183,216441,462727,1,2023-08-07,3600.0000000,204565512,2023-07-30
14:16:36.750981+00,1183375617,549237,0
0,954493183,216441,462727,1,2023-08-08,3600.0000000,204565513,2023-07-30
14:16:36.750981+00,1183375620,549237,0
0,954493183,216441,462727,1,2023-08-09,3600.0000000,204565514,2023-07-30
14:16:36.750981+00,1183375621,549237,0
0,954493183,216441,462727,1,2023-08-10,3600.0000000,204565515,2023-07-30
14:16:36.750981+00,1183375624,549237,0
0,954493183,216441,462727,1,2023-08-11,3600.0000000,204565516,2023-07-30
14:16:36.750981+00,1183375626,549237,0
0,954493183,216441,462727,1,2023-08-12,3600.0000000,204565517,2023-07-30
14:16:36.750981+00,1183375630,549237,0
0,954493183,216441,462727,1,2023-08-13,3600.0000000,204565518,2023-07-30
14:16:36.750981+00,1183375633,549237,0
0,954493183,216441,462727,1,2023-08-14,3600.0000000,204565519,2023-07-30
14:16:36.750981+00,1183375637,549237,0
0,954493183,216441,462727,1,2023-08-15,3600.0000000,204565520,2023-07-30
14:16:36.750981+00,1183375640,549237,0
0,954493183,216441,462727,1,2023-08-16,3600.0000000,204565521,2023-07-30
14:16:36.750981+00,1183375643,549237,0
0,954493183,216441,462727,1,2023-08-17,3600.0000000,204565522,2023-07-30
14:16:36.750981+00,1183375646,549237,0
0,954493183,216441,462727,1,2023-08-18,3600.0000000,204565523,2023-07-30
14:16:36.750981+00,1183375650,549237,0
0,954493183,216441,462727,1,2023-08-19,3600.0000000,204565524,2023-07-30
14:16:36.750981+00,1183375653,549237,0
0,954493183,216441,462727,1,2023-08-20,3600.0000000,204565525,2023-07-30
14:16:36.750981+00,1183375657,549237,0
0,954493183,216441,462727,1,2023-08-21,3600.0000000,204565526,2023-07-30
14:16:36.750981+00,1183375661,549237,0
0,954493183,216441,462727,1,2023-08-22,3600.0000000,204565527,2023-07-30
14:16:36.750981+00,1183375664,549237,0
0,954493183,216441,462727,1,2023-08-23,3600.0000000,204565528,2023-07-30
14:16:36.750981+00,1183375666,549237,0
0,954493183,216441,462727,1,2023-08-24,3600.0000000,204565529,2023-07-30
14:16:36.750981+00,1183375671,549237,0
0,954493183,216441,462727,1,2023-08-25,3600.0000000,204565530,2023-07-30
14:16:36.750981+00,1183375678,549237,0
0,954493183,216441,462727,1,2023-08-26,3600.0000000,204565531,2023-07-30
14:16:36.750981+00,1183375680,549237,0
0,954493183,216441,462727,1,2023-08-27,3600.0000000,204565532,2023-07-30
14:16:36.750981+00,1183375684,549237,0
0,954493183,216441,462727,1,2023-08-28,3600.0000000,204565533,2023-07-30
14:16:36.750981+00,1183375687,549237,0
0,954493183,216441,462727,1,2023-08-29,3600.0000000,204565534,2023-07-30
14:16:36.750981+00,1183375692,549237,0
0,954493183,216441,462727,1,2023-08-30,3600.0000000,204565535,2023-07-30
14:16:36.750981+00,1183375693,549237,0
0,954493183,216441,462727,1,2023-08-31,3600.0000000,204565536,2023-07-30
14:16:36.750981+00,1183375697,549237,0
0,954493183,216441,462727,2,2023-08-01,3600.0000000,204566027,2023-07-30
14:16:36.750981+00,1183375734,549238,0
0,954493183,216441,462727,2,2023-08-02,3600.0000000,204566028,2023-07-30
14:16:36.750981+00,1183375737,549238,0
0,954493183,216441,462727,2,2023-08-03,3600.0000000,204566029,2023-07-30
14:16:36.750981+00,1183375741,549238,0
0,954493183,216441,462727,2,2023-08-04,3600.0000000,204566030,2023-07-30
14:16:36.750981+00,1183375744,549238,0
0,954493183,216441,462727,2,2023-08-05,3600.0000000,204566031,2023-07-30
14:16:36.750981+00,1183375746,549238,0
0,954493183,216441,462727,2,2023-08-06,3600.0000000,204566032,2023-07-30
14:16:36.750981+00,1183375749,549238,0
0,954493183,216441,462727,2,2023-08-07,3600.0000000,204566033,2023-07-30
14:16:36.750981+00,1183375752,549238,0
===

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Alexander Lakhin 2023-09-22 12:00:01 Re: BUG #18127: Assertion HaveRegisteredOrActiveSnapshot failed on REINDEX CONCURRENTLY when blocksize=1
Previous Message vignesh C 2023-09-22 09:32:18 Re: [16+] subscription can end up in inconsistent state